From 74422b4ffcd680ce344d80a3eb6c6c364407c0d6 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 15:59:23 -0500 Subject: [PATCH 01/15] [Chore] UI: Upgrade to 0.14.48 Sistent Signed-off-by: Lee Calcote --- ui/package-lock.json | 18 +++++++++--------- ui/package.json | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ui/package-lock.json b/ui/package-lock.json index 01e0ac6b63c..6a56737eff1 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -20,7 +20,7 @@ "@fortawesome/free-regular-svg-icons": "^6.1.2", "@fortawesome/free-solid-svg-icons": "^6.4.0", "@fortawesome/react-fontawesome": "^0.2.0", - "@layer5/sistent": "^0.14.44", + "@layer5/sistent": "^0.14.48", "@material-ui/core": "^4.12.4", "@material-ui/icons": "^4.11.3", "@material-ui/lab": "^4.0.0-alpha.61", @@ -58,7 +58,7 @@ "isomorphic-unfetch": "^4.0.2", "js-yaml": "^4.1.0", "jsonlint-mod": "^1.7.6", - "jss": "*", + "jss": "latest", "lodash": "^4.17.21", "minimist": ">=1.2.2", "mochawesome": "^7.1.3", @@ -72,7 +72,7 @@ "path-parse": "^1.0.7", "pluralize": "^8.0.0", "postcss": "^8.4.38", - "prop-types": "*", + "prop-types": "latest", "react": "^17.0.2", "react-big-calendar": "^0.35.0", "react-codemirror2": "^7.2.1", @@ -3167,9 +3167,9 @@ "dev": true }, "node_modules/@layer5/sistent": { - "version": "0.14.44", - "resolved": "https://registry.npmjs.org/@layer5/sistent/-/sistent-0.14.44.tgz", - "integrity": "sha512-0sZACMyR6eEwNb17dDV8RBPjKVr45zZ6kh+Z/0qQtNyilnxmS29pGIcouBqPMcdlXuXp6DPT7K5x4TTktNDK0Q==", + "version": "0.14.48", + "resolved": "https://registry.npmjs.org/@layer5/sistent/-/sistent-0.14.48.tgz", + "integrity": "sha512-BM7dMfOowCOpj2HII2OtoegTj/fUsa71qIcC4x29Fmv63qrCylpgyuporeIGbmWp4Fx2lhHl9IYRTdPJ/eab3A==", "peerDependencies": { "@emotion/react": "^11.11.3", "@emotion/styled": "^11.11.0", @@ -31100,9 +31100,9 @@ "dev": true }, "@layer5/sistent": { - "version": "0.14.44", - "resolved": "https://registry.npmjs.org/@layer5/sistent/-/sistent-0.14.44.tgz", - "integrity": "sha512-0sZACMyR6eEwNb17dDV8RBPjKVr45zZ6kh+Z/0qQtNyilnxmS29pGIcouBqPMcdlXuXp6DPT7K5x4TTktNDK0Q==" + "version": "0.14.48", + "resolved": "https://registry.npmjs.org/@layer5/sistent/-/sistent-0.14.48.tgz", + "integrity": "sha512-BM7dMfOowCOpj2HII2OtoegTj/fUsa71qIcC4x29Fmv63qrCylpgyuporeIGbmWp4Fx2lhHl9IYRTdPJ/eab3A==" }, "@material-ui/core": { "version": "4.12.4", diff --git a/ui/package.json b/ui/package.json index 4685caedf7f..5f5c17d3cd0 100644 --- a/ui/package.json +++ b/ui/package.json @@ -38,7 +38,7 @@ "@fortawesome/free-regular-svg-icons": "^6.1.2", "@fortawesome/free-solid-svg-icons": "^6.4.0", "@fortawesome/react-fontawesome": "^0.2.0", - "@layer5/sistent": "^0.14.44", + "@layer5/sistent": "^0.14.48", "@material-ui/core": "^4.12.4", "@material-ui/icons": "^4.11.3", "@material-ui/lab": "^4.0.0-alpha.61", From ac66b5364db444340f4915eb177875be0c890c1e Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 16:51:09 -0500 Subject: [PATCH 02/15] models Signed-off-by: Lee Calcote --- docs/_includes/meshery-registry.html | 7 ++++--- docs/_includes/models-components.html | 5 +++++ docs/_includes/models.html | 5 ----- docs/_layouts/integration.html | 4 +++- docs/_sass/integration.scss | 2 +- docs/pages/concepts/logical/components.md | 17 +++++++++++------ 6 files changed, 24 insertions(+), 16 deletions(-) create mode 100644 docs/_includes/models-components.html delete mode 100644 docs/_includes/models.html diff --git a/docs/_includes/meshery-registry.html b/docs/_includes/meshery-registry.html index fbf8e8a864b..546aff73ba4 100644 --- a/docs/_includes/meshery-registry.html +++ b/docs/_includes/meshery-registry.html @@ -1,7 +1,8 @@ -

How to use the Meshery Registry

+

What is the Meshery Registry

-

The Meshery Registry is a critical component acting as the central repository for all capabilities known to Meshery.

-

Using Meshery CLI

+The Meshery Registry is a vital component within Meshery, serving as a centralized repository for managing a diverse range of cloud and cloud native resources. It stores and organizes crucial information such as models, categories, components, and relationships, enabling efficient interaction and utilization of these resources within the Meshery ecosystem. You can conveniently [access and manage registry data](#interacting-with-the-meshery-registry) through Meshery UI, and through Meshery CLI ([mesheryctl registry]({{site.baseurl}}/reference/mesheryctl/#meshery-registry-management)). + +

Importing Models into the Registry using Meshery CLI

To register a model using the Meshery CLI, you can use the mesheryctl command to import a model from a specified path:

mesheryctl model import -f <path-to-model> 
diff --git a/docs/_includes/models-components.html b/docs/_includes/models-components.html new file mode 100644 index 00000000000..8e43f6d326c --- /dev/null +++ b/docs/_includes/models-components.html @@ -0,0 +1,5 @@ +

What are Meshery Models and Components?

+ +

Meshery Models and Components represent the fundamental building blocks of your infrastructure. Use them to define the structure and configuration of your infrastructure and deployments by incorporating their use into a Design. Think of Designs as blueprints or templates that encapsulate everything from network configurations to service definitions.

+ +
Learn more about Models and Components
diff --git a/docs/_includes/models.html b/docs/_includes/models.html deleted file mode 100644 index 507491eb0dd..00000000000 --- a/docs/_includes/models.html +++ /dev/null @@ -1,5 +0,0 @@ -

What are Meshery Models?

- -

Meshery Models are foundational components within Meshery, a cloud-native management plane that facilitates the management of multi-cloud and cloud-native applications and infrastructure.
- -

Learn more about Meshery Models
diff --git a/docs/_layouts/integration.html b/docs/_layouts/integration.html index 4af35d13024..daf70e05659 100644 --- a/docs/_layouts/integration.html +++ b/docs/_layouts/integration.html @@ -4,8 +4,10 @@ {{ page.subtitle }} {{ content }} +
+ The {{ page.subtitle }} model supports the following components.
{% if page.components.size != 0 %}

@@ -29,7 +31,7 @@

-{% include_cached models.html %} +{% include_cached models-components.html %} {% include_cached meshery-registry.html %} {% if page.suggested-reading != false and page.title and page.type and page.category and page.url %} diff --git a/docs/_sass/integration.scss b/docs/_sass/integration.scss index c841a8f40f2..c58b4a1701e 100644 --- a/docs/_sass/integration.scss +++ b/docs/_sass/integration.scss @@ -27,7 +27,7 @@ justify-content: center; } .Compheading { - margin-top: 7rem; + // margin-top: 7rem; h2 { font-weight: normal; diff --git a/docs/pages/concepts/logical/components.md b/docs/pages/concepts/logical/components.md index 8d4388d9fb7..8b52ab378b6 100644 --- a/docs/pages/concepts/logical/components.md +++ b/docs/pages/concepts/logical/components.md @@ -9,17 +9,22 @@ list: include redirect_from: - concepts/components --- +In Meshery, a **Component** is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. -Components represent entities in the Meshery ecosystem, exposing capabilities of the underlying platform. They can be registered, created, and used by users and operators. Components have definitions, instances, and associated metadata. Components having the same `kind`, `apiVersion` and `model.name` attributes are considered duplicates. +Once registered with Meshery Server (in the [Registry](./registry)), components are available for inclusion in [Designs](./designs) that you create. Components can be created and published by anyone, allowing you to share you custom extensions with the community. This fosters a collaborative ecosystem where you can leverage and contribute to the growing collection of Meshery components. -[![Meshery Components]({{ site.baseurl }}/assets/img/architecture/meshery-components.svg -)]({{ site.baseurl }}/assets/img/architecture/meshery-components.svg) +Components having the same `kind`, `apiVersion` and `model.name` attributes are considered duplicates. + + + Components have a status that is represented as a `Connection` object. Both the administrative and real-time status of a component is a normalized representation of the connection's state. The status is represented as a `Connection` object because the status of a component is a *connection* to the component. For example, the status of a Kubernetes cluster is a direct reflection of a Meshery Server's connection to the cluster. Normalizing and extracting the status of a component as a direct property of the component and putting it into a connection allows multiple systems to share the same component with different states. For example, different Meshery Servers can access the same Kubernetes cluster, but each Meshery Server has its own connection to the cluster with its own status. Learn more about [Connections](/concepts/logical/connections). +--> \ No newline at end of file From 73b4e892411de99bc890d2abbb10683bd1389bff Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 16:52:27 -0500 Subject: [PATCH 03/15] Remove duplicate "Related Models" Signed-off-by: Lee Calcote --- docs/_includes/suggested-reading.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_includes/suggested-reading.html b/docs/_includes/suggested-reading.html index e1dcef4817a..b15bfb36815 100644 --- a/docs/_includes/suggested-reading.html +++ b/docs/_includes/suggested-reading.html @@ -1,4 +1,4 @@ -{% if include.section-title != "false" %} + {% assign sorted_reading = include.reading | default: site.pages | sort: include.title %} From cb5741a86d858e9e6d06fca2699e286b537076a5 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 16:54:40 -0500 Subject: [PATCH 04/15] relationships Signed-off-by: Lee Calcote --- docs/_includes/models-components.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_includes/models-components.html b/docs/_includes/models-components.html index 8e43f6d326c..c3d002ce305 100644 --- a/docs/_includes/models-components.html +++ b/docs/_includes/models-components.html @@ -2,4 +2,4 @@

What are Meshery Models and Components?

Meshery Models and Components represent the fundamental building blocks of your infrastructure. Use them to define the structure and configuration of your infrastructure and deployments by incorporating their use into a Design. Think of Designs as blueprints or templates that encapsulate everything from network configurations to service definitions.

-
Learn more about Models and Components
+
Learn more about Models, Components, Relationships, and Designs
From de9d7c61837f103183fcba6599c29c1ed212d897 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:03:00 -0500 Subject: [PATCH 05/15] redundant message Signed-off-by: Lee Calcote --- docs/_layouts/integration.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_layouts/integration.html b/docs/_layouts/integration.html index daf70e05659..daae4c3edda 100644 --- a/docs/_layouts/integration.html +++ b/docs/_layouts/integration.html @@ -7,7 +7,7 @@
- The {{ page.subtitle }} model supports the following components. +

The {{ page.title }} model supports the following components.

{% if page.components.size != 0 %}

From 99ccd0983d23fc85b91a1846ae2dadfd42527bf0 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:12:30 -0500 Subject: [PATCH 06/15] h6 color Signed-off-by: Lee Calcote --- docs/_includes/models-components.html | 2 +- docs/_layouts/integration.html | 2 +- docs/_sass/integration.scss | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/_includes/models-components.html b/docs/_includes/models-components.html index c3d002ce305..31c9a7ff211 100644 --- a/docs/_includes/models-components.html +++ b/docs/_includes/models-components.html @@ -2,4 +2,4 @@

What are Meshery Models and Components?

Meshery Models and Components represent the fundamental building blocks of your infrastructure. Use them to define the structure and configuration of your infrastructure and deployments by incorporating their use into a Design. Think of Designs as blueprints or templates that encapsulate everything from network configurations to service definitions.

-
Learn more about Models, Components, Relationships, and Designs
+
Learn more about Models, Components, Relationships, and Designs
diff --git a/docs/_layouts/integration.html b/docs/_layouts/integration.html index daae4c3edda..f5619b00c7b 100644 --- a/docs/_layouts/integration.html +++ b/docs/_layouts/integration.html @@ -7,12 +7,12 @@
-

The {{ page.title }} model supports the following components.

{% if page.components.size != 0 %}

Components ( {{ page.components.size }} )

+

The Meshery model for {{ page.title }} supports the following components.

{% endif %}
diff --git a/docs/_sass/integration.scss b/docs/_sass/integration.scss index c58b4a1701e..36c4a2cb1b3 100644 --- a/docs/_sass/integration.scss +++ b/docs/_sass/integration.scss @@ -41,4 +41,11 @@ width: 100%; height: 100%; object-fit: contain; +} + +h6.integration { + color: var(--brand-color-secondary); + & :hover { + color: var(--brand-color-primary); + } } \ No newline at end of file From e958d4420a0ec9d426510bd2b1c241430cf0e811 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:18:25 -0500 Subject: [PATCH 07/15] model generation Signed-off-by: Lee Calcote --- docs/_includes/meshery-registry.html | 15 ++--------- .../guides/operating/model-generation.md | 25 +++++++++++++++++-- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/docs/_includes/meshery-registry.html b/docs/_includes/meshery-registry.html index 546aff73ba4..80de605073f 100644 --- a/docs/_includes/meshery-registry.html +++ b/docs/_includes/meshery-registry.html @@ -1,16 +1,5 @@

What is the Meshery Registry

-The Meshery Registry is a vital component within Meshery, serving as a centralized repository for managing a diverse range of cloud and cloud native resources. It stores and organizes crucial information such as models, categories, components, and relationships, enabling efficient interaction and utilization of these resources within the Meshery ecosystem. You can conveniently [access and manage registry data](#interacting-with-the-meshery-registry) through Meshery UI, and through Meshery CLI ([mesheryctl registry]({{site.baseurl}}/reference/mesheryctl/#meshery-registry-management)). +The Meshery Registry is a vital component within Meshery, serving as a centralized repository for managing a diverse range of cloud and cloud native resources. It stores and organizes crucial information such as models, categories, components, and relationships, enabling efficient interaction and utilization of these resources within the Meshery ecosystem. You can conveniently access and manage registry data through Meshery UI, and through Meshery CLI (mesheryctl registry). -

Importing Models into the Registry using Meshery CLI

-

To register a model using the Meshery CLI, you can use the mesheryctl command to import a model from a specified path:

- -
mesheryctl model import -f <path-to-model> 
-

Using Meshery UI

-

You can also register a model through the Meshery UI:

-
    -
  • Navigate to the Settings → Registry page.
  • -
  • Click the "Import" button.
  • -
  • Select the model you want to import.
  • -
-
Learn more about Meshery Registry
+
Learn more about the Registry
diff --git a/docs/pages/guides/operating/model-generation.md b/docs/pages/guides/operating/model-generation.md index 72fa6de5152..bcc7bf0be7d 100644 --- a/docs/pages/guides/operating/model-generation.md +++ b/docs/pages/guides/operating/model-generation.md @@ -1,5 +1,26 @@ -How Meshery Generates Models +--- +layout: default +title: Understanding How Meshery Generates Models +abstract: Models are generated for capabilities defined in the Meshery Registry using a combination of manual entry and dynamic generation techniques. +permalink: guides/operating/model-generation +type: guides +category: operating +language: en +--- Meshery uses a combination of techniques to generate models for capabilities defined in its Registry. The following are the primary techniques used: -1) **Manual Entry**: The Meshery team manually enters the capabilities of a infrastructure or adapter into the Registry. This is the most common method used to add new capabilities to the Registry. \ No newline at end of file +1) **Manual Entry**: The Meshery team manually enters the capabilities of a infrastructure or adapter into the Registry. This is the most common method used to add new capabilities to the Registry. +2) **Model Generation**: Meshery uses a model generation tool to generate models for capabilities. This tool is used to generate models for capabilities that are not manually entered into the Registry. + +

Importing Models into the Registry using Meshery CLI

+

To register a model using the Meshery CLI, you can use the mesheryctl command to import a model from a specified path:

+ +
mesheryctl model import -f <path-to-model> 
+

Using Meshery UI

+

You can also register a model through the Meshery UI:

+
    +
  • Navigate to the Settings → Registry page.
  • +
  • Click the "Import" button.
  • +
  • Select the model you want to import.
  • +
\ No newline at end of file From 153d29603fb15b41233d3edeef6d2271463584eb Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:23:03 -0500 Subject: [PATCH 08/15] a records only. Signed-off-by: Lee Calcote --- docs/_sass/integration.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_sass/integration.scss b/docs/_sass/integration.scss index 36c4a2cb1b3..5850394da2d 100644 --- a/docs/_sass/integration.scss +++ b/docs/_sass/integration.scss @@ -43,7 +43,7 @@ object-fit: contain; } -h6.integration { +h6 > a.integration { color: var(--brand-color-secondary); & :hover { color: var(--brand-color-primary); From 59fcbb14f8bafae617f8099de1b0ad271fe9ebae Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:24:34 -0500 Subject: [PATCH 09/15] integration sub-folder Signed-off-by: Lee Calcote --- docs/_includes/{ => integration}/meshery-registry.html | 0 docs/_includes/{ => integration}/models-components.html | 0 docs/_layouts/integration.html | 4 ++-- docs/_sass/integration.scss | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename docs/_includes/{ => integration}/meshery-registry.html (100%) rename docs/_includes/{ => integration}/models-components.html (100%) diff --git a/docs/_includes/meshery-registry.html b/docs/_includes/integration/meshery-registry.html similarity index 100% rename from docs/_includes/meshery-registry.html rename to docs/_includes/integration/meshery-registry.html diff --git a/docs/_includes/models-components.html b/docs/_includes/integration/models-components.html similarity index 100% rename from docs/_includes/models-components.html rename to docs/_includes/integration/models-components.html diff --git a/docs/_layouts/integration.html b/docs/_layouts/integration.html index f5619b00c7b..eb212f1874d 100644 --- a/docs/_layouts/integration.html +++ b/docs/_layouts/integration.html @@ -31,8 +31,8 @@

-{% include_cached models-components.html %} -{% include_cached meshery-registry.html %} +{% include_cached integration/models-components.html %} +{% include_cached integration/meshery-registry.html %} {% if page.suggested-reading != false and page.title and page.type and page.category and page.url %} {% assign related_models_by_category = site.models | where_exp: "model", "model.integrations-category == page.integrations-category" %} diff --git a/docs/_sass/integration.scss b/docs/_sass/integration.scss index 5850394da2d..12e704efa5d 100644 --- a/docs/_sass/integration.scss +++ b/docs/_sass/integration.scss @@ -43,7 +43,7 @@ object-fit: contain; } -h6 > a.integration { +h6.integration > a { color: var(--brand-color-secondary); & :hover { color: var(--brand-color-primary); From 1d431a181a1257963ece9e403e79579c08a44063 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:39:30 -0500 Subject: [PATCH 10/15] fix hyperlink Signed-off-by: Lee Calcote --- docs/_includes/integration/models-components.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_includes/integration/models-components.html b/docs/_includes/integration/models-components.html index 31c9a7ff211..971e3fb5a60 100644 --- a/docs/_includes/integration/models-components.html +++ b/docs/_includes/integration/models-components.html @@ -2,4 +2,4 @@

What are Meshery Models and Components?

Meshery Models and Components represent the fundamental building blocks of your infrastructure. Use them to define the structure and configuration of your infrastructure and deployments by incorporating their use into a Design. Think of Designs as blueprints or templates that encapsulate everything from network configurations to service definitions.

-
Learn more about Models, Components, Relationships, and Designs
+
Learn more about Models, Components, Relationships, and Designs
From 4697de6abbcab8ff0d341721d7de4b4d6207c543 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:40:19 -0500 Subject: [PATCH 11/15] Compitems: reduce padding Signed-off-by: Lee Calcote --- docs/_sass/integration.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_sass/integration.scss b/docs/_sass/integration.scss index 12e704efa5d..bd6b85e02f0 100644 --- a/docs/_sass/integration.scss +++ b/docs/_sass/integration.scss @@ -23,7 +23,7 @@ display: flex; flex-wrap: wrap; gap: 1.5rem; - padding: 2rem 2rem 5rem 2rem; + padding: 2rem 2rem 2rem 2rem; justify-content: center; } .Compheading { From 1424ce7978fd28acbb544d3554063151c8e09cf1 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 7 Jun 2024 17:40:46 -0500 Subject: [PATCH 12/15] secondary Signed-off-by: Lee Calcote --- docs/_sass/integration.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_sass/integration.scss b/docs/_sass/integration.scss index bd6b85e02f0..9fb6bd8e66a 100644 --- a/docs/_sass/integration.scss +++ b/docs/_sass/integration.scss @@ -44,8 +44,8 @@ } h6.integration > a { - color: var(--brand-color-secondary); + color: var(--brand-color-primary); & :hover { - color: var(--brand-color-primary); + color: var(--brand-color-secondary); } } \ No newline at end of file From f9121cd0b0c72dffa66d0e0bedfb552e20a27fd3 Mon Sep 17 00:00:00 2001 From: leecalcote Date: Sat, 8 Jun 2024 00:02:09 +0000 Subject: [PATCH 13/15] latest discussion data files added Signed-off-by: Discussions bot --- docs/_data/discuss/meshery.json | 2 +- docs/_data/discuss/mesheryctl.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_data/discuss/meshery.json b/docs/_data/discuss/meshery.json index 2e1691883cf..b4a6e4fb5c6 100644 --- a/docs/_data/discuss/meshery.json +++ b/docs/_data/discuss/meshery.json @@ -1 +1 @@ -{"users":[{"id":2765,"username":"Ngole.Lawson","name":"Ngole Lawson","avatar_template":"/user_avatar/discuss.layer5.io/ngole.lawson/{size}/2515_2.png","trust_level":0},{"id":621,"username":"Yash_Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash_sharma/{size}/579_2.png","trust_level":2},{"id":2788,"username":"animeshchaudhri","name":"animesh chaudhri","avatar_template":"/user_avatar/discuss.layer5.io/animeshchaudhri/{size}/2516_2.png","trust_level":0},{"id":826,"username":"Yash.Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash.sharma/{size}/762_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":2},{"id":2729,"username":"Faisal-imtiyaz123","name":"Faisal Imtiyaz123","avatar_template":"/user_avatar/discuss.layer5.io/faisal-imtiyaz123/{size}/2461_2.png","trust_level":1},{"id":2777,"username":"Fife_Oluwabunmi","name":"Fife Oluwabunmi","avatar_template":"/user_avatar/discuss.layer5.io/fife_oluwabunmi/{size}/2511_2.png","trust_level":0},{"id":3,"username":"Lee","name":"Lee Calcote","avatar_template":"/user_avatar/discuss.layer5.io/lee/{size}/7_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":3},{"id":2615,"username":"Shahid.Ilhan","name":"Shahid Ilhan","avatar_template":"/user_avatar/discuss.layer5.io/shahid.ilhan/{size}/2382_2.png","trust_level":1},{"id":2644,"username":"Ibrahim.Mbaziira","name":"Ibrahim Mbaziira","avatar_template":"/user_avatar/discuss.layer5.io/ibrahim.mbaziira/{size}/2423_2.png","trust_level":1},{"id":147,"username":"MUzairS15","name":"Mohd Uzair","avatar_template":"/user_avatar/discuss.layer5.io/muzairs15/{size}/273_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":1},{"id":2121,"username":"moin","name":"Muhammad Moinuddin","avatar_template":"/user_avatar/discuss.layer5.io/moin/{size}/2321_2.png","trust_level":1},{"id":885,"username":"Ritik.Saxena","name":"Ritik Saxena","avatar_template":"/user_avatar/discuss.layer5.io/ritik.saxena/{size}/1109_2.png","trust_level":2},{"id":969,"username":"Sudhanshu_Dasgupta","name":"Sudhanshu Dasgupta","avatar_template":"/user_avatar/discuss.layer5.io/sudhanshu_dasgupta/{size}/997_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":2},{"id":2535,"username":"Emeka.uzowulu","name":"","avatar_template":"/user_avatar/discuss.layer5.io/emeka.uzowulu/{size}/2327_2.png","trust_level":1},{"id":115,"username":"cpepper96","name":"Cpepper96","avatar_template":"/user_avatar/discuss.layer5.io/cpepper96/{size}/203_2.png","trust_level":1},{"id":2484,"username":"Samuel.Nwanwobi","name":"SammyBloom","avatar_template":"/user_avatar/discuss.layer5.io/samuel.nwanwobi/{size}/2330_2.png","trust_level":1},{"id":2731,"username":"emmelinexu","name":"Emmeline","avatar_template":"/user_avatar/discuss.layer5.io/emmelinexu/{size}/2462_2.png","trust_level":0},{"id":1936,"username":"Akshay_Sharma","name":"Akshay Sharma","avatar_template":"/user_avatar/discuss.layer5.io/akshay_sharma/{size}/1868_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":0},{"id":1890,"username":"sandramsc","name":"Sandra Ashipala","avatar_template":"/user_avatar/discuss.layer5.io/sandramsc/{size}/1826_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":2},{"id":2687,"username":"Utsav.Lal","name":"Utsav Lal","avatar_template":"/user_avatar/discuss.layer5.io/utsav.lal/{size}/2427_2.png","trust_level":0},{"id":346,"username":"Christopher.Kalule","name":"Christopher Kalule","avatar_template":"/user_avatar/discuss.layer5.io/christopher.kalule/{size}/411_2.png","trust_level":1},{"id":975,"username":"vishalvivekm","name":"Vivek Vishal","avatar_template":"/user_avatar/discuss.layer5.io/vishalvivekm/{size}/1038_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":2},{"id":2633,"username":"Pratiksha.Sankhe","name":"Pratiksha Sankhe","avatar_template":"/user_avatar/discuss.layer5.io/pratiksha.sankhe/{size}/2386_2.png","trust_level":1},{"id":2602,"username":"Himanshu.Gupta","name":"Himanshu Gupta","avatar_template":"/user_avatar/discuss.layer5.io/himanshu.gupta/{size}/2378_2.png","trust_level":0},{"id":491,"username":"Antonette.Caldwell","name":"Antonette Caldwell","avatar_template":"/user_avatar/discuss.layer5.io/antonette.caldwell/{size}/485_2.png","trust_level":0},{"id":1482,"username":"Rex_Joshua","name":"Rex Joshua Ibegbu","avatar_template":"/user_avatar/discuss.layer5.io/rex_joshua/{size}/1350_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":1},{"id":2102,"username":"balagowda","name":"Balachandregowda P","avatar_template":"/letter_avatar_proxy/v4/letter/b/e0b2c6/{size}.png","trust_level":1},{"id":925,"username":"Saurabh_Singh","name":"Saurabh Kumar Singh","avatar_template":"/user_avatar/discuss.layer5.io/saurabh_singh/{size}/1632_2.png","trust_level":2}],"primary_groups":[],"flair_groups":[{"id":42,"name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_color":""}],"topic_list":{"can_create_topic":false,"more_topics_url":"/tag/meshery?match_all_tags=true&page=1&tags%5B%5D=meshery","per_page":30,"top_tags":["meshery","community","meetings","layer5","doubt","websites","meshmate","mesheryctl","meshery-ui","meshmap","weekly-summary","newcomers","docs","error","ux","meshery-adapter","devops","kubernetes","reactjs","announcements","cicd","discussion","docker-desktop","help","meshmodel","models","nighthawk","playground","blogpost","ci","contribute"],"tags":[{"id":78,"name":"meshery","topic_count":329,"staff":false,"description":null}],"topics":[{"id":5252,"title":"Error on terminal when I ran `mesheryctl system start`","fancy_title":"Error on terminal when I ran `mesheryctl system start`","slug":"error-on-terminal-when-i-ran-mesheryctl-system-start","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-06-04T21:25:01.137Z","last_posted_at":"2024-06-05T20:06:23.719Z","bumped":true,"bumped_at":"2024-06-05T20:06:23.719Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","websites"],"tags_descriptions":{},"views":17,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2765,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":5254,"title":"How to setup Meshery Operator for local machine","fancy_title":"How to setup Meshery Operator for local machine","slug":"how-to-setup-meshery-operator-for-local-machine","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-06-04T21:44:00.520Z","last_posted_at":"2024-06-05T18:48:35.703Z","bumped":true,"bumped_at":"2024-06-05T18:48:35.703Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt"],"tags_descriptions":{},"views":17,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2788,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":5261,"title":"Meshery Development Meeting | July 5th 2024","fancy_title":"Meshery Development Meeting | July 5th 2024","slug":"meshery-development-meeting-july-5th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-05T15:18:10.431Z","last_posted_at":"2024-06-05T15:18:10.614Z","bumped":true,"bumped_at":"2024-06-05T15:18:10.614Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":16,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5248,"title":"No connection shown in Docker Desktop Meshery extension","fancy_title":"No connection shown in Docker Desktop Meshery extension","slug":"no-connection-shown-in-docker-desktop-meshery-extension","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-04T16:54:40.438Z","last_posted_at":"2024-06-04T16:54:40.591Z","bumped":true,"bumped_at":"2024-06-04T16:54:40.591Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","docker-desktop"],"tags_descriptions":{},"views":15,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null}]},{"id":5245,"title":"Showing no connections in meshery playground as well as in Docker meshery extension","fancy_title":"Showing no connections in meshery playground as well as in Docker meshery extension","slug":"showing-no-connections-in-meshery-playground-as-well-as-in-docker-meshery-extension","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-04T02:08:54.179Z","last_posted_at":"2024-06-04T02:08:54.369Z","bumped":true,"bumped_at":"2024-06-04T02:08:54.369Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":21,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null}]},{"id":5244,"title":"Error in Meshery Server logs","fancy_title":"Error in Meshery Server logs","slug":"error-in-meshery-server-logs","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-06-03T18:04:20.429Z","last_posted_at":"2024-06-03T19:17:13.364Z","bumped":true,"bumped_at":"2024-06-03T19:17:13.364Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":23,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":5241,"title":"Looking for Meshmate for first PR","fancy_title":"Looking for Meshmate for first PR","slug":"looking-for-meshmate-for-first-pr","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-03T08:47:08.327Z","last_posted_at":"2024-06-03T08:47:08.478Z","bumped":true,"bumped_at":"2024-06-03T08:47:08.478Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery"],"tags_descriptions":{},"views":22,"like_count":0,"has_summary":false,"last_poster_username":"Fife_Oluwabunmi","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2777,"primary_group_id":null,"flair_group_id":null}]},{"id":5233,"title":"Bug in MesheryPlayground production website in Deploying and Removing Adapters","fancy_title":"Bug in MesheryPlayground production website in Deploying and Removing Adapters","slug":"bug-in-mesheryplayground-production-website-in-deploying-and-removing-adapters","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2024-06-02T07:15:39.135Z","last_posted_at":"2024-06-02T11:18:44.165Z","bumped":true,"bumped_at":"2024-06-02T11:18:44.165Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":34,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":5230,"title":"Error encountered when trying to refresh after deploying adapter in settings in meshery playground","fancy_title":"Error encountered when trying to refresh after deploying adapter in settings in meshery playground","slug":"error-encountered-when-trying-to-refresh-after-deploying-adapter-in-settings-in-meshery-playground","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2024-06-01T17:21:59.368Z","last_posted_at":"2024-06-01T23:25:48.708Z","bumped":true,"bumped_at":"2024-06-01T23:25:48.708Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":31,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4939,"title":"Unable to deploy meshery to minikube","fancy_title":"Unable to deploy meshery to minikube","slug":"unable-to-deploy-meshery-to-minikube","posts_count":7,"reply_count":5,"highest_post_number":8,"image_url":null,"created_at":"2024-04-14T05:19:23.349Z","last_posted_at":"2024-05-30T20:03:43.619Z","bumped":true,"bumped_at":"2024-05-30T20:03:43.619Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt"],"tags_descriptions":{},"views":189,"like_count":1,"has_summary":false,"last_poster_username":"Shahid.Ilhan","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2615,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":2644,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":147,"primary_group_id":null,"flair_group_id":42}]},{"id":5200,"title":"Looking for a meshmate to help with first PR","fancy_title":"Looking for a meshmate to help with first PR","slug":"looking-for-a-meshmate-to-help-with-first-pr","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-05-30T14:54:11.455Z","last_posted_at":"2024-05-30T15:21:44.720Z","bumped":true,"bumped_at":"2024-05-30T15:21:44.720Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","mesheryctl","meshery-ui","meshmap"],"tags_descriptions":{},"views":39,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5198,"title":"Meshery Development Meeting | May 29th 2024","fancy_title":"Meshery Development Meeting | May 29th 2024","slug":"meshery-development-meeting-may-29th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-29T15:12:57.996Z","last_posted_at":"2024-05-29T15:12:58.385Z","bumped":true,"bumped_at":"2024-05-29T15:12:58.385Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":26,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5194,"title":"Getting a 404 Error After Setting Up Meshery for the First Time? Here Is How I Solved It","fancy_title":"Getting a 404 Error After Setting Up Meshery for the First Time? Here Is How I Solved It","slug":"getting-a-404-error-after-setting-up-meshery-for-the-first-time-here-is-how-i-solved-it","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-28T15:49:23.356Z","last_posted_at":"2024-05-28T15:49:23.520Z","bumped":true,"bumped_at":"2024-05-28T15:49:23.520Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","websites"],"tags_descriptions":{},"views":40,"like_count":2,"has_summary":false,"last_poster_username":"moin","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2121,"primary_group_id":null,"flair_group_id":null}]},{"id":4816,"title":"Badge leveling system proposal","fancy_title":"Badge leveling system proposal","slug":"badge-leveling-system-proposal","posts_count":3,"reply_count":0,"highest_post_number":3,"image_url":null,"created_at":"2024-03-13T14:23:24.898Z","last_posted_at":"2024-03-22T02:54:33.595Z","bumped":true,"bumped_at":"2024-05-24T16:23:41.100Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","community","layer5"],"tags_descriptions":{},"views":144,"like_count":5,"has_summary":false,"last_poster_username":"Lee","category_id":12,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":885,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":969,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4789,"title":"[Help Wanted] A list of open DevOps-centric needs on Meshery projects","fancy_title":"[Help Wanted] A list of open DevOps-centric needs on Meshery projects","slug":"help-wanted-a-list-of-open-devops-centric-needs-on-meshery-projects","posts_count":10,"reply_count":4,"highest_post_number":10,"image_url":null,"created_at":"2024-03-11T19:20:02.138Z","last_posted_at":"2024-05-23T15:15:18.840Z","bumped":true,"bumped_at":"2024-05-23T15:15:18.840Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","devops","playground","help-wanted"],"tags_descriptions":{},"views":447,"like_count":10,"has_summary":false,"last_poster_username":"MUzairS15","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":2535,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":115,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":2484,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":147,"primary_group_id":null,"flair_group_id":42}]},{"id":5174,"title":"Meshery Build and Release call Meeting minutes (23rd May 2024)","fancy_title":"Meshery Build and Release call Meeting minutes (23rd May 2024)","slug":"meshery-build-and-release-call-meeting-minutes-23rd-may-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-23T15:12:51.116Z","last_posted_at":"2024-05-23T15:12:51.274Z","bumped":true,"bumped_at":"2024-05-23T15:12:51.274Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":54,"like_count":0,"has_summary":false,"last_poster_username":"MUzairS15","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":147,"primary_group_id":null,"flair_group_id":42}]},{"id":5158,"title":"Meshery Development Meeting | May 22nd 2024","fancy_title":"Meshery Development Meeting | May 22nd 2024","slug":"meshery-development-meeting-may-22nd-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-22T15:18:26.394Z","last_posted_at":"2024-05-22T15:18:26.578Z","bumped":true,"bumped_at":"2024-05-22T15:18:26.578Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":32,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5140,"title":"New member at Meshery, looking for a MeshMate","fancy_title":"New member at Meshery, looking for a MeshMate","slug":"new-member-at-meshery-looking-for-a-meshmate","posts_count":5,"reply_count":2,"highest_post_number":5,"image_url":null,"created_at":"2024-05-20T06:20:46.618Z","last_posted_at":"2024-05-21T23:51:02.395Z","bumped":true,"bumped_at":"2024-05-21T23:51:02.395Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings","meshmate"],"tags_descriptions":{"meetings":""},"views":71,"like_count":2,"has_summary":false,"last_poster_username":"emmelinexu","category_id":12,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2731,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1936,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":1890,"primary_group_id":null,"flair_group_id":42}]},{"id":5137,"title":"Newcomer looking for guidance","fancy_title":"Newcomer looking for guidance","slug":"newcomer-looking-for-guidance","posts_count":4,"reply_count":0,"highest_post_number":4,"image_url":null,"created_at":"2024-05-19T16:44:12.694Z","last_posted_at":"2024-05-21T13:00:35.336Z","bumped":true,"bumped_at":"2024-05-21T13:00:35.336Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings","meshmate"],"tags_descriptions":{"meetings":""},"views":61,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":12,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":5123,"title":"Doubt regarding plugins in Meshery UI","fancy_title":"Doubt regarding plugins in Meshery UI","slug":"doubt-regarding-plugins-in-meshery-ui","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-17T15:00:12.606Z","last_posted_at":"2024-05-17T15:00:12.815Z","bumped":true,"bumped_at":"2024-05-17T15:00:12.815Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt"],"tags_descriptions":{},"views":48,"like_count":0,"has_summary":false,"last_poster_username":"Utsav.Lal","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2687,"primary_group_id":null,"flair_group_id":null}]},{"id":5064,"title":"No reachable contexts found in the uploaded kube config","fancy_title":"No reachable contexts found in the uploaded kube config","slug":"no-reachable-contexts-found-in-the-uploaded-kube-config","posts_count":4,"reply_count":1,"highest_post_number":4,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/d/d668faec27a04941b181c94b1349b5a26e416c2f_2_1024x541.png","created_at":"2024-05-08T15:43:43.053Z","last_posted_at":"2024-05-08T17:24:13.897Z","bumped":true,"bumped_at":"2024-05-08T17:24:13.897Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery"],"tags_descriptions":{},"views":75,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":346,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":5066,"title":"Meshery Development Meeting | May 8th 2024","fancy_title":"Meshery Development Meeting | May 8th 2024","slug":"meshery-development-meeting-may-8th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-08T16:58:18.579Z","last_posted_at":"2024-05-08T16:58:18.775Z","bumped":true,"bumped_at":"2024-05-08T16:58:18.775Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":60,"like_count":2,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4981,"title":"WEBINAR: Making the CNCF Landscape interactive with Meshery","fancy_title":"WEBINAR: Making the CNCF Landscape interactive with Meshery","slug":"webinar-making-the-cncf-landscape-interactive-with-meshery","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-05-01T15:36:11.083Z","last_posted_at":"2024-05-01T15:43:08.294Z","bumped":true,"bumped_at":"2024-05-01T15:43:08.294Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","announcements"],"tags_descriptions":{},"views":65,"like_count":3,"has_summary":false,"last_poster_username":"vishalvivekm","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":1890,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42}]},{"id":4962,"title":"Meshery Development Meeting | April 24th 2024","fancy_title":"Meshery Development Meeting | April 24th 2024","slug":"meshery-development-meeting-april-24th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-04-24T17:35:31.667Z","last_posted_at":"2024-04-24T17:35:31.831Z","bumped":true,"bumped_at":"2024-04-24T17:35:31.831Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":70,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4947,"title":"Help needed for setup of meshery cli","fancy_title":"Help needed for setup of meshery cli","slug":"help-needed-for-setup-of-meshery-cli","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2024-04-16T05:38:33.730Z","last_posted_at":"2024-04-18T16:08:53.449Z","bumped":true,"bumped_at":"2024-04-18T16:08:53.449Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery"],"tags_descriptions":{},"views":90,"like_count":0,"has_summary":false,"last_poster_username":"Pratiksha.Sankhe","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2633,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4951,"title":"Meshery Development Meeting | April 17th 2024","fancy_title":"Meshery Development Meeting | April 17th 2024","slug":"meshery-development-meeting-april-17th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-04-17T15:34:47.539Z","last_posted_at":"2024-04-17T15:34:47.695Z","bumped":true,"bumped_at":"2024-04-17T15:34:47.695Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":72,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4934,"title":"What exactly is this sistent design system project","fancy_title":"What exactly is this sistent design system project","slug":"what-exactly-is-this-sistent-design-system-project","posts_count":6,"reply_count":3,"highest_post_number":6,"image_url":null,"created_at":"2024-04-12T17:03:10.204Z","last_posted_at":"2024-04-15T12:09:10.389Z","bumped":true,"bumped_at":"2024-04-15T12:09:10.389Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","layer5","doubt"],"tags_descriptions":{},"views":147,"like_count":9,"has_summary":false,"last_poster_username":"Rex_Joshua","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2602,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":491,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":1482,"primary_group_id":null,"flair_group_id":42}]},{"id":4176,"title":"Unable setup local Meshery development server","fancy_title":"Unable setup local Meshery development server","slug":"unable-setup-local-meshery-development-server","posts_count":8,"reply_count":4,"highest_post_number":10,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/a/abe7a18567441c4ccf85622624413735c7a621f4_2_1024x506.jpeg","created_at":"2023-11-11T17:50:15.758Z","last_posted_at":"2024-04-12T09:08:52.319Z","bumped":true,"bumped_at":"2024-04-12T09:08:52.319Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt","help"],"tags_descriptions":{},"views":252,"like_count":2,"has_summary":false,"last_poster_username":"Shahid.Ilhan","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2102,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":2615,"primary_group_id":null,"flair_group_id":null}]},{"id":4927,"title":"How a beginner can start exploring project of meshery?","fancy_title":"How a beginner can start exploring project of meshery?","slug":"how-a-beginner-can-start-exploring-project-of-meshery","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-04-10T15:44:22.766Z","last_posted_at":"2024-04-10T16:33:10.512Z","bumped":true,"bumped_at":"2024-04-10T16:33:10.512Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","community","doubt","websites","meshery-ui"],"tags_descriptions":{},"views":99,"like_count":3,"has_summary":false,"last_poster_username":"Saurabh_Singh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2602,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":925,"primary_group_id":null,"flair_group_id":null}]},{"id":4926,"title":"Meshery Development Meeting | April 10th 2024","fancy_title":"Meshery Development Meeting | April 10th 2024","slug":"meshery-development-meeting-april-10th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-04-10T15:29:50.288Z","last_posted_at":"2024-04-10T15:29:50.444Z","bumped":true,"bumped_at":"2024-04-10T15:29:50.444Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":66,"like_count":1,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]}]}} \ No newline at end of file +{"users":[{"id":2729,"username":"Faisal-imtiyaz123","name":"Faisal Imtiyaz123","avatar_template":"/user_avatar/discuss.layer5.io/faisal-imtiyaz123/{size}/2461_2.png","trust_level":1},{"id":2765,"username":"Ngole.Lawson","name":"Ngole Lawson","avatar_template":"/user_avatar/discuss.layer5.io/ngole.lawson/{size}/2515_2.png","trust_level":0},{"id":621,"username":"Yash_Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash_sharma/{size}/579_2.png","trust_level":2},{"id":2788,"username":"animeshchaudhri","name":"animesh chaudhri","avatar_template":"/user_avatar/discuss.layer5.io/animeshchaudhri/{size}/2516_2.png","trust_level":0},{"id":826,"username":"Yash.Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash.sharma/{size}/762_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":2},{"id":2777,"username":"Fife_Oluwabunmi","name":"Fife Oluwabunmi","avatar_template":"/user_avatar/discuss.layer5.io/fife_oluwabunmi/{size}/2511_2.png","trust_level":0},{"id":3,"username":"Lee","name":"Lee Calcote","avatar_template":"/user_avatar/discuss.layer5.io/lee/{size}/7_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":3},{"id":2615,"username":"Shahid.Ilhan","name":"Shahid Ilhan","avatar_template":"/user_avatar/discuss.layer5.io/shahid.ilhan/{size}/2382_2.png","trust_level":1},{"id":2644,"username":"Ibrahim.Mbaziira","name":"Ibrahim Mbaziira","avatar_template":"/user_avatar/discuss.layer5.io/ibrahim.mbaziira/{size}/2423_2.png","trust_level":1},{"id":147,"username":"MUzairS15","name":"Mohd Uzair","avatar_template":"/user_avatar/discuss.layer5.io/muzairs15/{size}/273_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":1},{"id":2121,"username":"moin","name":"Muhammad Moinuddin","avatar_template":"/user_avatar/discuss.layer5.io/moin/{size}/2321_2.png","trust_level":1},{"id":885,"username":"Ritik.Saxena","name":"Ritik Saxena","avatar_template":"/user_avatar/discuss.layer5.io/ritik.saxena/{size}/1109_2.png","trust_level":2},{"id":969,"username":"Sudhanshu_Dasgupta","name":"Sudhanshu Dasgupta","avatar_template":"/user_avatar/discuss.layer5.io/sudhanshu_dasgupta/{size}/997_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":2},{"id":2535,"username":"Emeka.uzowulu","name":"","avatar_template":"/user_avatar/discuss.layer5.io/emeka.uzowulu/{size}/2327_2.png","trust_level":1},{"id":115,"username":"cpepper96","name":"Cpepper96","avatar_template":"/user_avatar/discuss.layer5.io/cpepper96/{size}/203_2.png","trust_level":1},{"id":2484,"username":"Samuel.Nwanwobi","name":"SammyBloom","avatar_template":"/user_avatar/discuss.layer5.io/samuel.nwanwobi/{size}/2330_2.png","trust_level":1},{"id":2731,"username":"emmelinexu","name":"Emmeline","avatar_template":"/user_avatar/discuss.layer5.io/emmelinexu/{size}/2462_2.png","trust_level":0},{"id":1936,"username":"Akshay_Sharma","name":"Akshay Sharma","avatar_template":"/user_avatar/discuss.layer5.io/akshay_sharma/{size}/1868_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":0},{"id":1890,"username":"sandramsc","name":"Sandra Ashipala","avatar_template":"/user_avatar/discuss.layer5.io/sandramsc/{size}/1826_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":2},{"id":2687,"username":"Utsav.Lal","name":"Utsav Lal","avatar_template":"/user_avatar/discuss.layer5.io/utsav.lal/{size}/2427_2.png","trust_level":0},{"id":346,"username":"Christopher.Kalule","name":"Christopher Kalule","avatar_template":"/user_avatar/discuss.layer5.io/christopher.kalule/{size}/411_2.png","trust_level":1},{"id":975,"username":"vishalvivekm","name":"Vivek Vishal","avatar_template":"/user_avatar/discuss.layer5.io/vishalvivekm/{size}/1038_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":2},{"id":2633,"username":"Pratiksha.Sankhe","name":"Pratiksha Sankhe","avatar_template":"/user_avatar/discuss.layer5.io/pratiksha.sankhe/{size}/2386_2.png","trust_level":1},{"id":2602,"username":"Himanshu.Gupta","name":"Himanshu Gupta","avatar_template":"/user_avatar/discuss.layer5.io/himanshu.gupta/{size}/2378_2.png","trust_level":0},{"id":491,"username":"Antonette.Caldwell","name":"Antonette Caldwell","avatar_template":"/user_avatar/discuss.layer5.io/antonette.caldwell/{size}/485_2.png","trust_level":0},{"id":1482,"username":"Rex_Joshua","name":"Rex Joshua Ibegbu","avatar_template":"/user_avatar/discuss.layer5.io/rex_joshua/{size}/1350_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":1},{"id":2102,"username":"balagowda","name":"Balachandregowda P","avatar_template":"/letter_avatar_proxy/v4/letter/b/e0b2c6/{size}.png","trust_level":1}],"primary_groups":[],"flair_groups":[{"id":42,"name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_color":""}],"topic_list":{"can_create_topic":false,"more_topics_url":"/tag/meshery?match_all_tags=true&page=1&tags%5B%5D=meshery","per_page":30,"top_tags":["meshery","community","meetings","layer5","doubt","websites","meshmate","mesheryctl","meshery-ui","meshmap","weekly-summary","newcomers","docs","error","meshery-adapter","ux","devops","kubernetes","reactjs","announcements","cicd","discussion","docker-desktop","help","meshmodel","models","nighthawk","playground","blogpost","ci","contribute"],"tags":[{"id":78,"name":"meshery","topic_count":331,"staff":false,"description":null}],"topics":[{"id":5270,"title":"Unable to deploy Meshery Adapters","fancy_title":"Unable to deploy Meshery Adapters","slug":"unable-to-deploy-meshery-adapters","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-07T18:12:11.288Z","last_posted_at":"2024-06-07T18:12:11.465Z","bumped":true,"bumped_at":"2024-06-07T18:12:11.465Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","meshery-adapter"],"tags_descriptions":{},"views":2,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null}]},{"id":5265,"title":"Looking for a meshmate to help me with Docker extension development","fancy_title":"Looking for a meshmate to help me with Docker extension development","slug":"looking-for-a-meshmate-to-help-me-with-docker-extension-development","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-07T07:11:42.125Z","last_posted_at":"2024-06-07T07:11:42.340Z","bumped":true,"bumped_at":"2024-06-07T07:11:42.340Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","meshery-ui"],"tags_descriptions":{},"views":11,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null}]},{"id":5252,"title":"Error on terminal when I ran `mesheryctl system start`","fancy_title":"Error on terminal when I ran `mesheryctl system start`","slug":"error-on-terminal-when-i-ran-mesheryctl-system-start","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-06-04T21:25:01.137Z","last_posted_at":"2024-06-05T20:06:23.719Z","bumped":true,"bumped_at":"2024-06-05T20:06:23.719Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","websites"],"tags_descriptions":{},"views":23,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2765,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":5254,"title":"How to setup Meshery Operator for local machine","fancy_title":"How to setup Meshery Operator for local machine","slug":"how-to-setup-meshery-operator-for-local-machine","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-06-04T21:44:00.520Z","last_posted_at":"2024-06-05T18:48:35.703Z","bumped":true,"bumped_at":"2024-06-05T18:48:35.703Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt"],"tags_descriptions":{},"views":19,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2788,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":5261,"title":"Meshery Development Meeting | July 5th 2024","fancy_title":"Meshery Development Meeting | July 5th 2024","slug":"meshery-development-meeting-july-5th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-05T15:18:10.431Z","last_posted_at":"2024-06-05T15:18:10.614Z","bumped":true,"bumped_at":"2024-06-05T15:18:10.614Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":21,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5248,"title":"No connection shown in Docker Desktop Meshery extension","fancy_title":"No connection shown in Docker Desktop Meshery extension","slug":"no-connection-shown-in-docker-desktop-meshery-extension","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-04T16:54:40.438Z","last_posted_at":"2024-06-04T16:54:40.591Z","bumped":true,"bumped_at":"2024-06-04T16:54:40.591Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","docker-desktop"],"tags_descriptions":{},"views":18,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null}]},{"id":5245,"title":"Showing no connections in meshery playground as well as in Docker meshery extension","fancy_title":"Showing no connections in meshery playground as well as in Docker meshery extension","slug":"showing-no-connections-in-meshery-playground-as-well-as-in-docker-meshery-extension","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-04T02:08:54.179Z","last_posted_at":"2024-06-04T02:08:54.369Z","bumped":true,"bumped_at":"2024-06-04T02:08:54.369Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":24,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null}]},{"id":5244,"title":"Error in Meshery Server logs","fancy_title":"Error in Meshery Server logs","slug":"error-in-meshery-server-logs","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-06-03T18:04:20.429Z","last_posted_at":"2024-06-03T19:17:13.364Z","bumped":true,"bumped_at":"2024-06-03T19:17:13.364Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":26,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":5241,"title":"Looking for Meshmate for first PR","fancy_title":"Looking for Meshmate for first PR","slug":"looking-for-meshmate-for-first-pr","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-06-03T08:47:08.327Z","last_posted_at":"2024-06-03T08:47:08.478Z","bumped":true,"bumped_at":"2024-06-03T08:47:08.478Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery"],"tags_descriptions":{},"views":23,"like_count":0,"has_summary":false,"last_poster_username":"Fife_Oluwabunmi","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2777,"primary_group_id":null,"flair_group_id":null}]},{"id":5233,"title":"Bug in MesheryPlayground production website in Deploying and Removing Adapters","fancy_title":"Bug in MesheryPlayground production website in Deploying and Removing Adapters","slug":"bug-in-mesheryplayground-production-website-in-deploying-and-removing-adapters","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2024-06-02T07:15:39.135Z","last_posted_at":"2024-06-02T11:18:44.165Z","bumped":true,"bumped_at":"2024-06-02T11:18:44.165Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":36,"like_count":0,"has_summary":false,"last_poster_username":"Faisal-imtiyaz123","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":5230,"title":"Error encountered when trying to refresh after deploying adapter in settings in meshery playground","fancy_title":"Error encountered when trying to refresh after deploying adapter in settings in meshery playground","slug":"error-encountered-when-trying-to-refresh-after-deploying-adapter-in-settings-in-meshery-playground","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2024-06-01T17:21:59.368Z","last_posted_at":"2024-06-01T23:25:48.708Z","bumped":true,"bumped_at":"2024-06-01T23:25:48.708Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate"],"tags_descriptions":{},"views":34,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4939,"title":"Unable to deploy meshery to minikube","fancy_title":"Unable to deploy meshery to minikube","slug":"unable-to-deploy-meshery-to-minikube","posts_count":7,"reply_count":5,"highest_post_number":8,"image_url":null,"created_at":"2024-04-14T05:19:23.349Z","last_posted_at":"2024-05-30T20:03:43.619Z","bumped":true,"bumped_at":"2024-05-30T20:03:43.619Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt"],"tags_descriptions":{},"views":192,"like_count":1,"has_summary":false,"last_poster_username":"Shahid.Ilhan","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2615,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":2644,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":147,"primary_group_id":null,"flair_group_id":42}]},{"id":5200,"title":"Looking for a meshmate to help with first PR","fancy_title":"Looking for a meshmate to help with first PR","slug":"looking-for-a-meshmate-to-help-with-first-pr","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-05-30T14:54:11.455Z","last_posted_at":"2024-05-30T15:21:44.720Z","bumped":true,"bumped_at":"2024-05-30T15:21:44.720Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","mesheryctl","meshery-ui","meshmap"],"tags_descriptions":{},"views":40,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5198,"title":"Meshery Development Meeting | May 29th 2024","fancy_title":"Meshery Development Meeting | May 29th 2024","slug":"meshery-development-meeting-may-29th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-29T15:12:57.996Z","last_posted_at":"2024-05-29T15:12:58.385Z","bumped":true,"bumped_at":"2024-05-29T15:12:58.385Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":27,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5194,"title":"Getting a 404 Error After Setting Up Meshery for the First Time? Here Is How I Solved It","fancy_title":"Getting a 404 Error After Setting Up Meshery for the First Time? Here Is How I Solved It","slug":"getting-a-404-error-after-setting-up-meshery-for-the-first-time-here-is-how-i-solved-it","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-28T15:49:23.356Z","last_posted_at":"2024-05-28T15:49:23.520Z","bumped":true,"bumped_at":"2024-05-28T15:49:23.520Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","websites"],"tags_descriptions":{},"views":42,"like_count":2,"has_summary":false,"last_poster_username":"moin","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2121,"primary_group_id":null,"flair_group_id":null}]},{"id":4816,"title":"Badge leveling system proposal","fancy_title":"Badge leveling system proposal","slug":"badge-leveling-system-proposal","posts_count":3,"reply_count":0,"highest_post_number":3,"image_url":null,"created_at":"2024-03-13T14:23:24.898Z","last_posted_at":"2024-03-22T02:54:33.595Z","bumped":true,"bumped_at":"2024-05-24T16:23:41.100Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","community","layer5"],"tags_descriptions":{},"views":145,"like_count":5,"has_summary":false,"last_poster_username":"Lee","category_id":12,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":885,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":969,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4789,"title":"[Help Wanted] A list of open DevOps-centric needs on Meshery projects","fancy_title":"[Help Wanted] A list of open DevOps-centric needs on Meshery projects","slug":"help-wanted-a-list-of-open-devops-centric-needs-on-meshery-projects","posts_count":10,"reply_count":4,"highest_post_number":10,"image_url":null,"created_at":"2024-03-11T19:20:02.138Z","last_posted_at":"2024-05-23T15:15:18.840Z","bumped":true,"bumped_at":"2024-05-23T15:15:18.840Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","devops","playground","help-wanted"],"tags_descriptions":{},"views":449,"like_count":10,"has_summary":false,"last_poster_username":"MUzairS15","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":2535,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":115,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":2484,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":147,"primary_group_id":null,"flair_group_id":42}]},{"id":5174,"title":"Meshery Build and Release call Meeting minutes (23rd May 2024)","fancy_title":"Meshery Build and Release call Meeting minutes (23rd May 2024)","slug":"meshery-build-and-release-call-meeting-minutes-23rd-may-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-23T15:12:51.116Z","last_posted_at":"2024-05-23T15:12:51.274Z","bumped":true,"bumped_at":"2024-05-23T15:12:51.274Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":58,"like_count":0,"has_summary":false,"last_poster_username":"MUzairS15","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":147,"primary_group_id":null,"flair_group_id":42}]},{"id":5158,"title":"Meshery Development Meeting | May 22nd 2024","fancy_title":"Meshery Development Meeting | May 22nd 2024","slug":"meshery-development-meeting-may-22nd-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-22T15:18:26.394Z","last_posted_at":"2024-05-22T15:18:26.578Z","bumped":true,"bumped_at":"2024-05-22T15:18:26.578Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":35,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":5140,"title":"New member at Meshery, looking for a MeshMate","fancy_title":"New member at Meshery, looking for a MeshMate","slug":"new-member-at-meshery-looking-for-a-meshmate","posts_count":5,"reply_count":2,"highest_post_number":5,"image_url":null,"created_at":"2024-05-20T06:20:46.618Z","last_posted_at":"2024-05-21T23:51:02.395Z","bumped":true,"bumped_at":"2024-05-21T23:51:02.395Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings","meshmate"],"tags_descriptions":{"meetings":""},"views":72,"like_count":2,"has_summary":false,"last_poster_username":"emmelinexu","category_id":12,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2731,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1936,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":1890,"primary_group_id":null,"flair_group_id":42}]},{"id":5137,"title":"Newcomer looking for guidance","fancy_title":"Newcomer looking for guidance","slug":"newcomer-looking-for-guidance","posts_count":4,"reply_count":0,"highest_post_number":4,"image_url":null,"created_at":"2024-05-19T16:44:12.694Z","last_posted_at":"2024-05-21T13:00:35.336Z","bumped":true,"bumped_at":"2024-05-21T13:00:35.336Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings","meshmate"],"tags_descriptions":{"meetings":""},"views":62,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":12,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":5123,"title":"Doubt regarding plugins in Meshery UI","fancy_title":"Doubt regarding plugins in Meshery UI","slug":"doubt-regarding-plugins-in-meshery-ui","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-17T15:00:12.606Z","last_posted_at":"2024-05-17T15:00:12.815Z","bumped":true,"bumped_at":"2024-05-17T15:00:12.815Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt"],"tags_descriptions":{},"views":49,"like_count":0,"has_summary":false,"last_poster_username":"Utsav.Lal","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":2687,"primary_group_id":null,"flair_group_id":null}]},{"id":5064,"title":"No reachable contexts found in the uploaded kube config","fancy_title":"No reachable contexts found in the uploaded kube config","slug":"no-reachable-contexts-found-in-the-uploaded-kube-config","posts_count":4,"reply_count":1,"highest_post_number":4,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/d/d668faec27a04941b181c94b1349b5a26e416c2f_2_1024x541.png","created_at":"2024-05-08T15:43:43.053Z","last_posted_at":"2024-05-08T17:24:13.897Z","bumped":true,"bumped_at":"2024-05-08T17:24:13.897Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery"],"tags_descriptions":{},"views":76,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":346,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":5066,"title":"Meshery Development Meeting | May 8th 2024","fancy_title":"Meshery Development Meeting | May 8th 2024","slug":"meshery-development-meeting-may-8th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-05-08T16:58:18.579Z","last_posted_at":"2024-05-08T16:58:18.775Z","bumped":true,"bumped_at":"2024-05-08T16:58:18.775Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":62,"like_count":2,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4981,"title":"WEBINAR: Making the CNCF Landscape interactive with Meshery","fancy_title":"WEBINAR: Making the CNCF Landscape interactive with Meshery","slug":"webinar-making-the-cncf-landscape-interactive-with-meshery","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-05-01T15:36:11.083Z","last_posted_at":"2024-05-01T15:43:08.294Z","bumped":true,"bumped_at":"2024-05-01T15:43:08.294Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","announcements"],"tags_descriptions":{},"views":66,"like_count":3,"has_summary":false,"last_poster_username":"vishalvivekm","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":1890,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42}]},{"id":4962,"title":"Meshery Development Meeting | April 24th 2024","fancy_title":"Meshery Development Meeting | April 24th 2024","slug":"meshery-development-meeting-april-24th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-04-24T17:35:31.667Z","last_posted_at":"2024-04-24T17:35:31.831Z","bumped":true,"bumped_at":"2024-04-24T17:35:31.831Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":72,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4947,"title":"Help needed for setup of meshery cli","fancy_title":"Help needed for setup of meshery cli","slug":"help-needed-for-setup-of-meshery-cli","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2024-04-16T05:38:33.730Z","last_posted_at":"2024-04-18T16:08:53.449Z","bumped":true,"bumped_at":"2024-04-18T16:08:53.449Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery"],"tags_descriptions":{},"views":92,"like_count":0,"has_summary":false,"last_poster_username":"Pratiksha.Sankhe","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":2633,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4951,"title":"Meshery Development Meeting | April 17th 2024","fancy_title":"Meshery Development Meeting | April 17th 2024","slug":"meshery-development-meeting-april-17th-2024","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-04-17T15:34:47.539Z","last_posted_at":"2024-04-17T15:34:47.695Z","bumped":true,"bumped_at":"2024-04-17T15:34:47.695Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meetings"],"tags_descriptions":{"meetings":""},"views":74,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4934,"title":"What exactly is this sistent design system project","fancy_title":"What exactly is this sistent design system project","slug":"what-exactly-is-this-sistent-design-system-project","posts_count":6,"reply_count":3,"highest_post_number":6,"image_url":null,"created_at":"2024-04-12T17:03:10.204Z","last_posted_at":"2024-04-15T12:09:10.389Z","bumped":true,"bumped_at":"2024-04-15T12:09:10.389Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","layer5","doubt"],"tags_descriptions":{},"views":149,"like_count":9,"has_summary":false,"last_poster_username":"Rex_Joshua","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2602,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":491,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":1482,"primary_group_id":null,"flair_group_id":42}]},{"id":4176,"title":"Unable setup local Meshery development server","fancy_title":"Unable setup local Meshery development server","slug":"unable-setup-local-meshery-development-server","posts_count":8,"reply_count":4,"highest_post_number":10,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/a/abe7a18567441c4ccf85622624413735c7a621f4_2_1024x506.jpeg","created_at":"2023-11-11T17:50:15.758Z","last_posted_at":"2024-04-12T09:08:52.319Z","bumped":true,"bumped_at":"2024-04-12T09:08:52.319Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt","help"],"tags_descriptions":{},"views":253,"like_count":2,"has_summary":false,"last_poster_username":"Shahid.Ilhan","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2102,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":2615,"primary_group_id":null,"flair_group_id":null}]}]}} \ No newline at end of file diff --git a/docs/_data/discuss/mesheryctl.json b/docs/_data/discuss/mesheryctl.json index f9bf7ded1a2..b9a138a8750 100644 --- a/docs/_data/discuss/mesheryctl.json +++ b/docs/_data/discuss/mesheryctl.json @@ -1 +1 @@ -{"users":[{"id":2729,"username":"Faisal-imtiyaz123","name":"Faisal Imtiyaz123","avatar_template":"/user_avatar/discuss.layer5.io/faisal-imtiyaz123/{size}/2461_2.png","trust_level":1},{"id":826,"username":"Yash.Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash.sharma/{size}/762_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":2},{"id":2573,"username":"AllenOps08","name":"Allen George Babu","avatar_template":"/user_avatar/discuss.layer5.io/allenops08/{size}/2356_2.png","trust_level":1},{"id":3,"username":"Lee","name":"Lee Calcote","avatar_template":"/user_avatar/discuss.layer5.io/lee/{size}/7_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":3},{"id":975,"username":"vishalvivekm","name":"Vivek Vishal","avatar_template":"/user_avatar/discuss.layer5.io/vishalvivekm/{size}/1038_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":2},{"id":2265,"username":"Althaf66","name":"ALTHAF","avatar_template":"/user_avatar/discuss.layer5.io/althaf66/{size}/2126_2.png","trust_level":1},{"id":1890,"username":"sandramsc","name":"Sandra Ashipala","avatar_template":"/user_avatar/discuss.layer5.io/sandramsc/{size}/1826_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":2},{"id":788,"username":"Harsh.Mishra","name":"Harsh Mishra","avatar_template":"/user_avatar/discuss.layer5.io/harsh.mishra/{size}/691_2.png","trust_level":1},{"id":2305,"username":"Abdur","name":"Sheikh Abdur Rohit","avatar_template":"/user_avatar/discuss.layer5.io/abdur/{size}/2151_2.png","trust_level":1},{"id":2228,"username":"Harshith_Sudar","name":"Harshith","avatar_template":"/user_avatar/discuss.layer5.io/harshith_sudar/{size}/2105_2.png","trust_level":0},{"id":1760,"username":"Shlok_Mishra","name":"Shlok Mishra","avatar_template":"/user_avatar/discuss.layer5.io/shlok_mishra/{size}/1691_2.png","trust_level":2},{"id":2177,"username":"Vihas.Makwana","name":"Vihas Makwana","avatar_template":"/user_avatar/discuss.layer5.io/vihas.makwana/{size}/2125_2.png","trust_level":0},{"id":1743,"username":"Shailika_Sahu","name":"Shailika Sahu","avatar_template":"/user_avatar/discuss.layer5.io/shailika_sahu/{size}/1675_2.png","trust_level":0},{"id":621,"username":"Yash_Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash_sharma/{size}/579_2.png","trust_level":2},{"id":1841,"username":"shivamtaneja","name":"Shivam Taneja","avatar_template":"/user_avatar/discuss.layer5.io/shivamtaneja/{size}/1784_2.png","trust_level":1},{"id":1924,"username":"Rajan_Kumar","name":"Rajan Kumar","avatar_template":"/user_avatar/discuss.layer5.io/rajan_kumar/{size}/1855_2.png","trust_level":1},{"id":1681,"username":"Rajdip019","name":"Rajdeep Sengupta","avatar_template":"/user_avatar/discuss.layer5.io/rajdip019/{size}/1608_2.png","trust_level":1},{"id":1354,"username":"Aabid.Sofi","name":"Aabid Sofi","avatar_template":"/user_avatar/discuss.layer5.io/aabid.sofi/{size}/1419_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":1},{"id":1669,"username":"kituuu","name":"Karthik Ayangar","avatar_template":"/user_avatar/discuss.layer5.io/kituuu/{size}/1596_2.png","trust_level":0},{"id":698,"username":"abdullah1308","name":"Abdullah Rafi","avatar_template":"/user_avatar/discuss.layer5.io/abdullah1308/{size}/631_2.png","trust_level":1},{"id":1100,"username":"Philip-21","name":"Philip Obiora","avatar_template":"/user_avatar/discuss.layer5.io/philip-21/{size}/1039_2.png","trust_level":2},{"id":1537,"username":"parth721","name":"Partha Ghosh","avatar_template":"/user_avatar/discuss.layer5.io/parth721/{size}/1802_2.png","trust_level":1},{"id":1478,"username":"Zaki_Shaikh","name":"Muhammed Zaki","avatar_template":"/user_avatar/discuss.layer5.io/zaki_shaikh/{size}/1338_2.png","trust_level":2},{"id":1563,"username":"luigidematteis","name":"Luigi De Matteis","avatar_template":"/user_avatar/discuss.layer5.io/luigidematteis/{size}/1436_2.png","trust_level":0},{"id":132,"username":"asubedy","name":"Aaditya Narayan Subedy","avatar_template":"/user_avatar/discuss.layer5.io/asubedy/{size}/248_2.png","trust_level":2},{"id":1198,"username":"ShivangShandilya","name":"Shivang Shandilya","avatar_template":"/user_avatar/discuss.layer5.io/shivangshandilya/{size}/1087_2.png","trust_level":1},{"id":33,"username":"hexxdump","name":"Hussaina N","avatar_template":"/user_avatar/discuss.layer5.io/hexxdump/{size}/72_2.png","trust_level":1},{"id":683,"username":"Suhail.Khan","name":"Suhail Khan","avatar_template":"/user_avatar/discuss.layer5.io/suhail.khan/{size}/702_2.png","trust_level":1},{"id":31,"username":"aminos","name":"Anshumaan Kumar Prasad","avatar_template":"/user_avatar/discuss.layer5.io/aminos/{size}/1172_2.png","trust_level":1},{"id":14,"username":"Abhi","name":"Abhishek","avatar_template":"/user_avatar/discuss.layer5.io/abhi/{size}/32_2.png","trust_level":2},{"id":950,"username":"Azanul.Haque","name":"Azanul Haque","avatar_template":"/user_avatar/discuss.layer5.io/azanul.haque/{size}/1107_2.png","trust_level":1},{"id":1093,"username":"Santosh_Sankranthi_v_s_a","name":"Santosh Sankranthi v s a","avatar_template":"/user_avatar/discuss.layer5.io/santosh_sankranthi_v_s_a/{size}/1033_2.png","trust_level":1},{"id":974,"username":"Samarth_Mayya","name":"Samarth Mayya","avatar_template":"/user_avatar/discuss.layer5.io/samarth_mayya/{size}/963_2.png","trust_level":1},{"id":736,"username":"gopi.vaibhav","name":"Gopi Vaibhav","avatar_template":"/user_avatar/discuss.layer5.io/gopi.vaibhav/{size}/1671_2.png","trust_level":1},{"id":234,"username":"harkiratsm","name":"HARKIRAT SINGH","avatar_template":"/user_avatar/discuss.layer5.io/harkiratsm/{size}/442_2.png","trust_level":1},{"id":75,"username":"Leonard","name":"Nwobodo Leonard","avatar_template":"/user_avatar/discuss.layer5.io/leonard/{size}/129_2.png","trust_level":3},{"id":747,"username":"devilkiller-ag","name":"Ashmit JaiSarita Gupta","avatar_template":"/user_avatar/discuss.layer5.io/devilkiller-ag/{size}/660_2.png","trust_level":0},{"id":11,"username":"Anita-ihuman","name":"Anita-ihuman","avatar_template":"/user_avatar/discuss.layer5.io/anita-ihuman/{size}/28_2.png","trust_level":2},{"id":729,"username":"Ebi","name":"Ebi Kpemi-Ogokimi","avatar_template":"/user_avatar/discuss.layer5.io/ebi/{size}/649_2.png","trust_level":0},{"id":688,"username":"agnivesh_01","name":"Agnivesh Chaubey","avatar_template":"/user_avatar/discuss.layer5.io/agnivesh_01/{size}/618_2.png","trust_level":0},{"id":491,"username":"Antonette.Caldwell","name":"Antonette Caldwell","avatar_template":"/user_avatar/discuss.layer5.io/antonette.caldwell/{size}/485_2.png","trust_level":0},{"id":692,"username":"Pranav.Patil","name":"Pranav Patil","avatar_template":"/user_avatar/discuss.layer5.io/pranav.patil/{size}/698_2.png","trust_level":1},{"id":342,"username":"Kamal.Singh","name":"Kamal Singh","avatar_template":"/user_avatar/discuss.layer5.io/kamal.singh/{size}/466_2.png","trust_level":1},{"id":568,"username":"Franklin.Ekoh","name":"Franklin Ekoh","avatar_template":"/user_avatar/discuss.layer5.io/franklin.ekoh/{size}/573_2.png","trust_level":0},{"id":584,"username":"measutosh","name":"Asutosh Panda","avatar_template":"/user_avatar/discuss.layer5.io/measutosh/{size}/556_2.png","trust_level":0},{"id":164,"username":"Axit_Patel","name":"Axit Patel","avatar_template":"/user_avatar/discuss.layer5.io/axit_patel/{size}/297_2.png","trust_level":0},{"id":474,"username":"Pankaj.Khushalani","name":"Pankaj Khushalani","avatar_template":"/user_avatar/discuss.layer5.io/pankaj.khushalani/{size}/477_2.png","trust_level":1},{"id":22,"username":"alphaX86","name":"Aadhitya A","avatar_template":"/user_avatar/discuss.layer5.io/alphax86/{size}/51_2.png","trust_level":1}],"primary_groups":[],"flair_groups":[{"id":42,"name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_color":""}],"topic_list":{"can_create_topic":false,"per_page":30,"top_tags":["meshery","community","meetings","layer5","doubt","websites","meshmate","mesheryctl","meshery-ui","meshmap","weekly-summary","newcomers","docs","error","ux","meshery-adapter","devops","kubernetes","reactjs","announcements","cicd","discussion","docker-desktop","help","meshmodel","models","nighthawk","playground","blogpost","ci","contribute"],"tags":[{"id":71,"name":"mesheryctl","topic_count":28,"staff":false,"description":null}],"topics":[{"id":5200,"title":"Looking for a meshmate to help with first PR","fancy_title":"Looking for a meshmate to help with first PR","slug":"looking-for-a-meshmate-to-help-with-first-pr","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-05-30T14:54:11.455Z","last_posted_at":"2024-05-30T15:21:44.720Z","bumped":true,"bumped_at":"2024-05-30T15:21:44.720Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","mesheryctl","meshery-ui","meshmap"],"tags_descriptions":{},"views":39,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4862,"title":"Not able to access Ports during mesheryctl system start","fancy_title":"Not able to access Ports during mesheryctl system start","slug":"not-able-to-access-ports-during-mesheryctl-system-start","posts_count":5,"reply_count":2,"highest_post_number":5,"image_url":null,"created_at":"2024-03-20T14:22:15.519Z","last_posted_at":"2024-04-02T17:09:50.834Z","bumped":true,"bumped_at":"2024-04-02T17:09:50.834Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":160,"like_count":4,"has_summary":false,"last_poster_username":"vishalvivekm","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2573,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42}]},{"id":4769,"title":"Tip: Series of commands to generate Meshery's model registry","fancy_title":"Tip: Series of commands to generate Meshery’s model registry","slug":"tip-series-of-commands-to-generate-mesherys-model-registry","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-03-05T21:08:15.434Z","last_posted_at":"2024-03-05T21:08:15.692Z","bumped":true,"bumped_at":"2024-03-05T23:23:02.788Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl","models","registry"],"tags_descriptions":{},"views":111,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4729,"title":"Error while connecting minikube on meshery","fancy_title":"Error while connecting minikube on meshery","slug":"error-while-connecting-minikube-on-meshery","posts_count":8,"reply_count":4,"highest_post_number":8,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/6/647938555bf6f688e5948dbcd556a7f31295c198_2_1024x241.png","created_at":"2024-02-27T19:49:17.969Z","last_posted_at":"2024-02-28T06:45:12.972Z","bumped":true,"bumped_at":"2024-02-28T06:45:12.972Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl","minikube"],"tags_descriptions":{},"views":213,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2265,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4203,"title":"Error while installing kubernetes","fancy_title":"Error while installing kubernetes","slug":"error-while-installing-kubernetes","posts_count":8,"reply_count":3,"highest_post_number":8,"image_url":"https://discuss.layer5.io/uploads/default/original/2X/1/19b0b718414aacb65539c6358395e33b1ef1c58a.png","created_at":"2023-11-17T09:50:47.335Z","last_posted_at":"2024-01-06T19:48:47.490Z","bumped":true,"bumped_at":"2024-01-07T12:15:59.462Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl","kubernetes"],"tags_descriptions":{},"views":297,"like_count":4,"has_summary":false,"last_poster_username":"Abdur","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster, Accepted Answer","user_id":1890,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":788,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":2305,"primary_group_id":null,"flair_group_id":null}]},{"id":4332,"title":"What port does mesheryctl work on generally?","fancy_title":"What port does mesheryctl work on generally?","slug":"what-port-does-mesheryctl-work-on-generally","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2023-12-12T19:14:38.103Z","last_posted_at":"2023-12-12T19:18:04.646Z","bumped":true,"bumped_at":"2023-12-12T19:18:04.646Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":179,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2228,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4284,"title":"Docker compose not available issue while running mesheryctl system start command","fancy_title":"Docker compose not available issue while running mesheryctl system start command","slug":"docker-compose-not-available-issue-while-running-mesheryctl-system-start-command","posts_count":5,"reply_count":2,"highest_post_number":5,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/d/d5777457926033c4fdd5f7a304d83ccdf3031de3_2_1024x195.png","created_at":"2023-12-04T13:36:32.550Z","last_posted_at":"2023-12-04T13:47:56.215Z","bumped":true,"bumped_at":"2023-12-04T13:47:56.215Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":234,"like_count":2,"has_summary":false,"last_poster_username":"Shlok_Mishra","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster, Accepted Answer","user_id":1760,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":2177,"primary_group_id":null,"flair_group_id":null}]},{"id":3517,"title":"While Setting Environment for Meshery, Facing issue","fancy_title":"While Setting Environment for Meshery, Facing issue","slug":"while-setting-environment-for-meshery-facing-issue","posts_count":12,"reply_count":9,"highest_post_number":13,"image_url":null,"created_at":"2023-09-05T08:17:01.125Z","last_posted_at":"2023-09-29T18:43:12.784Z","bumped":true,"bumped_at":"2023-09-29T18:43:12.784Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt","mesheryctl"],"tags_descriptions":{},"views":397,"like_count":5,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":1743,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1841,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1924,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":3398,"title":"Invalid Component Error while starting meshery system","fancy_title":"Invalid Component Error while starting meshery system","slug":"invalid-component-error-while-starting-meshery-system","posts_count":3,"reply_count":0,"highest_post_number":3,"image_url":"https://discuss.layer5.io/uploads/default/original/2X/4/4733b621567b772112e69870783bfdfef14ca123.png","created_at":"2023-08-18T07:11:09.570Z","last_posted_at":"2023-08-18T19:54:36.146Z","bumped":true,"bumped_at":"2023-08-18T19:54:36.146Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl","error"],"tags_descriptions":{},"views":273,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":1681,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":1354,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":3393,"title":"Mesheryctl is not updating on the latest macOS Sonoma beta. Homebrew is giving me some error. Please help","fancy_title":"Mesheryctl is not updating on the latest macOS Sonoma beta. Homebrew is giving me some error. Please help","slug":"mesheryctl-is-not-updating-on-the-latest-macos-sonoma-beta-homebrew-is-giving-me-some-error-please-help","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/1/1c40483fc408e522cbc32ea26db30dfdf503cbcb_2_1024x661.jpeg","created_at":"2023-08-17T18:02:39.821Z","last_posted_at":"2023-08-17T18:02:39.962Z","bumped":true,"bumped_at":"2023-08-17T18:02:39.962Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":263,"like_count":0,"has_summary":false,"last_poster_username":"kituuu","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":1669,"primary_group_id":null,"flair_group_id":null}]},{"id":3347,"title":"New Performance features in mesheryctl","fancy_title":"New Performance features in mesheryctl","slug":"new-performance-features-in-mesheryctl","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2023-08-09T10:22:02.044Z","last_posted_at":"2023-08-10T13:50:25.400Z","bumped":true,"bumped_at":"2023-08-10T13:50:25.400Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl","performance"],"tags_descriptions":{},"views":243,"like_count":5,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":698,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1100,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":3307,"title":"Certificates signed by unknown authority","fancy_title":"Certificates signed by unknown authority","slug":"certificates-signed-by-unknown-authority","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/8/8d784d54f1dc9ba8009357061f404b83adf061ec_2_1024x576.png","created_at":"2023-08-03T09:21:00.874Z","last_posted_at":"2023-08-06T15:16:54.583Z","bumped":true,"bumped_at":"2023-08-06T15:16:54.583Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":400,"like_count":2,"has_summary":false,"last_poster_username":"parth721","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":1537,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":1478,"primary_group_id":null,"flair_group_id":null}]},{"id":3200,"title":"`systemctl` unable to get context even if they are available","fancy_title":"`systemctl` unable to get context even if they are available","slug":"systemctl-unable-to-get-context-even-if-they-are-available","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/0/07c8a3ed81a4055549e8755471c5826f88d1c4ed_2_1024x272.png","created_at":"2023-07-20T10:19:38.095Z","last_posted_at":"2023-07-20T10:19:38.254Z","bumped":true,"bumped_at":"2023-07-20T10:19:38.254Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":281,"like_count":0,"has_summary":false,"last_poster_username":"luigidematteis","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":1563,"primary_group_id":null,"flair_group_id":null}]},{"id":3132,"title":"Can we login using `mesheryctl` without opening browser, with token or something similar","fancy_title":"Can we login using `mesheryctl` without opening browser, with token or something similar","slug":"can-we-login-using-mesheryctl-without-opening-browser-with-token-or-something-similar","posts_count":6,"reply_count":2,"highest_post_number":6,"image_url":null,"created_at":"2023-07-13T18:10:34.450Z","last_posted_at":"2023-07-15T00:58:32.029Z","bumped":true,"bumped_at":"2023-07-15T00:58:32.029Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":399,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":132,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":2578,"title":"Error while running mesheryctl system login command","fancy_title":"Error while running mesheryctl system login command","slug":"error-while-running-mesheryctl-system-login-command","posts_count":9,"reply_count":6,"highest_post_number":9,"image_url":null,"created_at":"2023-04-20T15:38:21.992Z","last_posted_at":"2023-07-04T11:31:05.634Z","bumped":true,"bumped_at":"2023-07-04T11:31:05.634Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":363,"like_count":1,"has_summary":false,"last_poster_username":"Suhail.Khan","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":1198,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":33,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":683,"primary_group_id":null,"flair_group_id":null}]},{"id":2761,"title":"Mesheryctl system login not stopping (after signed in successfully)","fancy_title":"Mesheryctl system login not stopping (after signed in successfully)","slug":"mesheryctl-system-login-not-stopping-after-signed-in-successfully","posts_count":8,"reply_count":3,"highest_post_number":8,"image_url":null,"created_at":"2023-05-19T08:56:02.317Z","last_posted_at":"2023-05-25T18:51:08.318Z","bumped":true,"bumped_at":"2023-05-25T18:51:08.318Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":347,"like_count":4,"has_summary":false,"last_poster_username":"aminos","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":31,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":14,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":950,"primary_group_id":null,"flair_group_id":null}]},{"id":2593,"title":"Uneven way through which meshery opens up","fancy_title":"Uneven way through which meshery opens up","slug":"uneven-way-through-which-meshery-opens-up","posts_count":6,"reply_count":2,"highest_post_number":7,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/d/d70122958b3dee39862d797a881201f4fe43b383_2_1024x491.jpeg","created_at":"2023-04-22T10:39:32.794Z","last_posted_at":"2023-04-24T21:07:36.711Z","bumped":true,"bumped_at":"2023-04-24T21:07:36.711Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":350,"like_count":3,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":1093,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":950,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":2289,"title":"Unable to start Meshery","fancy_title":"Unable to start Meshery","slug":"unable-to-start-meshery","posts_count":13,"reply_count":9,"highest_post_number":13,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/2d7c670abc0c8005c2fcc94ebe53818ce7a531fb_2_1024x477.png","created_at":"2023-03-02T02:17:44.628Z","last_posted_at":"2023-03-05T19:31:41.968Z","bumped":true,"bumped_at":"2023-03-05T19:31:41.968Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":441,"like_count":3,"has_summary":false,"last_poster_username":"Samarth_Mayya","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":974,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1733,"title":"Facing an error in setting up meshery locally","fancy_title":"Facing an error in setting up meshery locally","slug":"facing-an-error-in-setting-up-meshery-locally","posts_count":10,"reply_count":7,"highest_post_number":10,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/6af1df0b3f5f026fad9c9fc77bf79eb4b7505f96_2_1024x393.png","created_at":"2022-12-21T06:21:35.182Z","last_posted_at":"2022-12-23T12:41:51.234Z","bumped":true,"bumped_at":"2022-12-23T12:41:51.234Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":481,"like_count":4,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster, Accepted Answer","user_id":736,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":234,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":75,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1721,"title":"Error installing Meshery on Ubuntu 22.04","fancy_title":"Error installing Meshery on Ubuntu 22.04","slug":"error-installing-meshery-on-ubuntu-22-04","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2022-12-17T03:40:32.909Z","last_posted_at":"2022-12-21T08:39:49.932Z","bumped":true,"bumped_at":"2022-12-21T08:39:49.932Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt","mesheryctl"],"tags_descriptions":{},"views":339,"like_count":0,"has_summary":false,"last_poster_username":"Anita-ihuman","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":747,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":234,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":11,"primary_group_id":null,"flair_group_id":null}]},{"id":1693,"title":"Error deploying mesheryctl","fancy_title":"Error deploying mesheryctl","slug":"error-deploying-mesheryctl","posts_count":11,"reply_count":3,"highest_post_number":11,"image_url":"https://discuss.layer5.io/uploads/default/original/1X/ce65538391191f085beb201b066bdbd42c25440c.png","created_at":"2022-12-07T17:45:00.566Z","last_posted_at":"2022-12-19T22:07:24.692Z","bumped":true,"bumped_at":"2022-12-19T22:07:24.692Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","layer5","mesheryctl","error"],"tags_descriptions":{},"views":629,"like_count":0,"has_summary":false,"last_poster_username":"Ebi","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":729,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1644,"title":"Not able to choose an adapter an install mesheryctl command","fancy_title":"Not able to choose an adapter an install mesheryctl command","slug":"not-able-to-choose-an-adapter-an-install-mesheryctl-command","posts_count":6,"reply_count":1,"highest_post_number":6,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/058a1d0fc02212235b04100d4437cb439f3dc28b_2_1024x576.png","created_at":"2022-11-08T14:14:28.390Z","last_posted_at":"2022-11-08T16:55:23.897Z","bumped":true,"bumped_at":"2022-11-08T16:55:23.897Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["community","layer5","doubt","mesheryctl","meshery-adapter"],"tags_descriptions":{},"views":413,"like_count":2,"has_summary":false,"last_poster_username":"Kamal.Singh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":688,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":33,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":491,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":692,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":342,"primary_group_id":null,"flair_group_id":null}]},{"id":1544,"title":"Unable to setup meshery docs on local (mac)","fancy_title":"Unable to setup meshery docs on local (mac)","slug":"unable-to-setup-meshery-docs-on-local-mac","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/fd93033b53dab57622bb0f256e272b064abb1f94_2_1024x330.png","created_at":"2022-10-06T11:09:35.270Z","last_posted_at":"2022-10-06T11:09:35.478Z","bumped":true,"bumped_at":"2022-10-07T07:46:14.715Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":362,"like_count":0,"has_summary":false,"last_poster_username":"Franklin.Ekoh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":568,"primary_group_id":null,"flair_group_id":null}]},{"id":1501,"title":"Issue while setting up meshery using GItpod","fancy_title":"Issue while setting up meshery using GItpod","slug":"issue-while-setting-up-meshery-using-gitpod","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":"https://discuss.layer5.io/uploads/default/original/1X/456154a8125d86462659ceab5ba52f1bcad61472.png","created_at":"2022-09-27T11:59:53.664Z","last_posted_at":"2022-09-27T12:03:23.747Z","bumped":true,"bumped_at":"2022-09-27T12:03:23.747Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","community","doubt","mesheryctl"],"tags_descriptions":{},"views":317,"like_count":0,"has_summary":false,"last_poster_username":"Kamal.Singh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":584,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":342,"primary_group_id":null,"flair_group_id":null}]},{"id":1162,"title":"How to run Mesheryctl locally in my system","fancy_title":"How to run Mesheryctl locally in my system","slug":"how-to-run-mesheryctl-locally-in-my-system","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2022-09-03T05:27:31.951Z","last_posted_at":"2022-09-20T04:17:32.231Z","bumped":true,"bumped_at":"2022-09-20T04:17:32.231Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":385,"like_count":1,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":164,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":474,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1000,"title":"Mesheryctl app import: Design Spec Review","fancy_title":"Mesheryctl app import: Design Spec Review","slug":"mesheryctl-app-import-design-spec-review","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2022-07-27T15:27:25.654Z","last_posted_at":"2022-08-05T07:23:07.420Z","bumped":true,"bumped_at":"2022-08-05T07:23:07.420Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl","design-review","kubernetes-manifest","helm-chart"],"tags_descriptions":{},"views":478,"like_count":1,"has_summary":false,"last_poster_username":"alphaX86","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":22,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":977,"title":"Meshery Not Starting (mesheryctl)","fancy_title":"Meshery Not Starting (mesheryctl)","slug":"meshery-not-starting-mesheryctl","posts_count":4,"reply_count":2,"highest_post_number":4,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/1d1da596f747d83c42f3cb5b692c866d99c69d76_2_1024x214.png","created_at":"2022-07-27T04:34:55.867Z","last_posted_at":"2022-07-27T09:23:10.178Z","bumped":true,"bumped_at":"2022-07-27T09:23:10.178Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["community","mesheryctl"],"tags_descriptions":{},"views":317,"like_count":2,"has_summary":false,"last_poster_username":"harkiratsm","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster, Accepted Answer","user_id":234,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":22,"primary_group_id":null,"flair_group_id":null}]},{"id":911,"title":"Call for Feedback: Behavior changes in `mesheryctl mesh`","fancy_title":"Call for Feedback: Behavior changes in `mesheryctl mesh`","slug":"call-for-feedback-behavior-changes-in-mesheryctl-mesh","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2022-07-06T15:09:16.245Z","last_posted_at":"2022-07-06T15:09:16.350Z","bumped":true,"bumped_at":"2022-07-06T15:09:16.350Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":269,"like_count":1,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]}]}} \ No newline at end of file +{"users":[{"id":2729,"username":"Faisal-imtiyaz123","name":"Faisal Imtiyaz123","avatar_template":"/user_avatar/discuss.layer5.io/faisal-imtiyaz123/{size}/2461_2.png","trust_level":1},{"id":826,"username":"Yash.Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash.sharma/{size}/762_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"moderator":true,"trust_level":2},{"id":2573,"username":"AllenOps08","name":"Allen George Babu","avatar_template":"/user_avatar/discuss.layer5.io/allenops08/{size}/2356_2.png","trust_level":1},{"id":3,"username":"Lee","name":"Lee Calcote","avatar_template":"/user_avatar/discuss.layer5.io/lee/{size}/7_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":3},{"id":975,"username":"vishalvivekm","name":"Vivek Vishal","avatar_template":"/user_avatar/discuss.layer5.io/vishalvivekm/{size}/1038_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"admin":true,"moderator":true,"trust_level":2},{"id":2265,"username":"Althaf66","name":"ALTHAF","avatar_template":"/user_avatar/discuss.layer5.io/althaf66/{size}/2126_2.png","trust_level":1},{"id":1890,"username":"sandramsc","name":"Sandra Ashipala","avatar_template":"/user_avatar/discuss.layer5.io/sandramsc/{size}/1826_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":2},{"id":788,"username":"Harsh.Mishra","name":"Harsh Mishra","avatar_template":"/user_avatar/discuss.layer5.io/harsh.mishra/{size}/691_2.png","trust_level":1},{"id":2305,"username":"Abdur","name":"Sheikh Abdur Rohit","avatar_template":"/user_avatar/discuss.layer5.io/abdur/{size}/2151_2.png","trust_level":1},{"id":2228,"username":"Harshith_Sudar","name":"Harshith","avatar_template":"/user_avatar/discuss.layer5.io/harshith_sudar/{size}/2105_2.png","trust_level":0},{"id":1760,"username":"Shlok_Mishra","name":"Shlok Mishra","avatar_template":"/user_avatar/discuss.layer5.io/shlok_mishra/{size}/1691_2.png","trust_level":2},{"id":2177,"username":"Vihas.Makwana","name":"Vihas Makwana","avatar_template":"/user_avatar/discuss.layer5.io/vihas.makwana/{size}/2125_2.png","trust_level":0},{"id":1743,"username":"Shailika_Sahu","name":"Shailika Sahu","avatar_template":"/user_avatar/discuss.layer5.io/shailika_sahu/{size}/1675_2.png","trust_level":0},{"id":621,"username":"Yash_Sharma","name":"Yash Sharma","avatar_template":"/user_avatar/discuss.layer5.io/yash_sharma/{size}/579_2.png","trust_level":2},{"id":1841,"username":"shivamtaneja","name":"Shivam Taneja","avatar_template":"/user_avatar/discuss.layer5.io/shivamtaneja/{size}/1784_2.png","trust_level":1},{"id":1924,"username":"Rajan_Kumar","name":"Rajan Kumar","avatar_template":"/user_avatar/discuss.layer5.io/rajan_kumar/{size}/1855_2.png","trust_level":1},{"id":1681,"username":"Rajdip019","name":"Rajdeep Sengupta","avatar_template":"/user_avatar/discuss.layer5.io/rajdip019/{size}/1608_2.png","trust_level":1},{"id":1354,"username":"Aabid.Sofi","name":"Aabid Sofi","avatar_template":"/user_avatar/discuss.layer5.io/aabid.sofi/{size}/1419_2.png","flair_name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_group_id":42,"trust_level":1},{"id":1669,"username":"kituuu","name":"Karthik Ayangar","avatar_template":"/user_avatar/discuss.layer5.io/kituuu/{size}/1596_2.png","trust_level":0},{"id":698,"username":"abdullah1308","name":"Abdullah Rafi","avatar_template":"/user_avatar/discuss.layer5.io/abdullah1308/{size}/631_2.png","trust_level":1},{"id":1100,"username":"Philip-21","name":"Philip Obiora","avatar_template":"/user_avatar/discuss.layer5.io/philip-21/{size}/1039_2.png","trust_level":2},{"id":1537,"username":"parth721","name":"Partha Ghosh","avatar_template":"/user_avatar/discuss.layer5.io/parth721/{size}/1802_2.png","trust_level":1},{"id":1478,"username":"Zaki_Shaikh","name":"Muhammed Zaki","avatar_template":"/user_avatar/discuss.layer5.io/zaki_shaikh/{size}/1338_2.png","trust_level":2},{"id":1563,"username":"luigidematteis","name":"Luigi De Matteis","avatar_template":"/user_avatar/discuss.layer5.io/luigidematteis/{size}/1436_2.png","trust_level":0},{"id":132,"username":"asubedy","name":"Aaditya Narayan Subedy","avatar_template":"/user_avatar/discuss.layer5.io/asubedy/{size}/248_2.png","trust_level":2},{"id":1198,"username":"ShivangShandilya","name":"Shivang Shandilya","avatar_template":"/user_avatar/discuss.layer5.io/shivangshandilya/{size}/1087_2.png","trust_level":1},{"id":33,"username":"hexxdump","name":"Hussaina N","avatar_template":"/user_avatar/discuss.layer5.io/hexxdump/{size}/72_2.png","trust_level":1},{"id":683,"username":"Suhail.Khan","name":"Suhail Khan","avatar_template":"/user_avatar/discuss.layer5.io/suhail.khan/{size}/702_2.png","trust_level":1},{"id":31,"username":"aminos","name":"Anshumaan Kumar Prasad","avatar_template":"/user_avatar/discuss.layer5.io/aminos/{size}/1172_2.png","trust_level":1},{"id":14,"username":"Abhi","name":"Abhishek","avatar_template":"/user_avatar/discuss.layer5.io/abhi/{size}/32_2.png","trust_level":2},{"id":950,"username":"Azanul.Haque","name":"Azanul Haque","avatar_template":"/user_avatar/discuss.layer5.io/azanul.haque/{size}/1107_2.png","trust_level":1},{"id":1093,"username":"Santosh_Sankranthi_v_s_a","name":"Santosh Sankranthi v s a","avatar_template":"/user_avatar/discuss.layer5.io/santosh_sankranthi_v_s_a/{size}/1033_2.png","trust_level":1},{"id":974,"username":"Samarth_Mayya","name":"Samarth Mayya","avatar_template":"/user_avatar/discuss.layer5.io/samarth_mayya/{size}/963_2.png","trust_level":1},{"id":736,"username":"gopi.vaibhav","name":"Gopi Vaibhav","avatar_template":"/user_avatar/discuss.layer5.io/gopi.vaibhav/{size}/1671_2.png","trust_level":1},{"id":234,"username":"harkiratsm","name":"HARKIRAT SINGH","avatar_template":"/user_avatar/discuss.layer5.io/harkiratsm/{size}/442_2.png","trust_level":1},{"id":75,"username":"Leonard","name":"Nwobodo Leonard","avatar_template":"/user_avatar/discuss.layer5.io/leonard/{size}/129_2.png","trust_level":3},{"id":747,"username":"devilkiller-ag","name":"Ashmit JaiSarita Gupta","avatar_template":"/user_avatar/discuss.layer5.io/devilkiller-ag/{size}/660_2.png","trust_level":0},{"id":11,"username":"Anita-ihuman","name":"Anita-ihuman","avatar_template":"/user_avatar/discuss.layer5.io/anita-ihuman/{size}/28_2.png","trust_level":2},{"id":729,"username":"Ebi","name":"Ebi Kpemi-Ogokimi","avatar_template":"/user_avatar/discuss.layer5.io/ebi/{size}/649_2.png","trust_level":0},{"id":688,"username":"agnivesh_01","name":"Agnivesh Chaubey","avatar_template":"/user_avatar/discuss.layer5.io/agnivesh_01/{size}/618_2.png","trust_level":0},{"id":491,"username":"Antonette.Caldwell","name":"Antonette Caldwell","avatar_template":"/user_avatar/discuss.layer5.io/antonette.caldwell/{size}/485_2.png","trust_level":0},{"id":692,"username":"Pranav.Patil","name":"Pranav Patil","avatar_template":"/user_avatar/discuss.layer5.io/pranav.patil/{size}/698_2.png","trust_level":1},{"id":342,"username":"Kamal.Singh","name":"Kamal Singh","avatar_template":"/user_avatar/discuss.layer5.io/kamal.singh/{size}/466_2.png","trust_level":1},{"id":568,"username":"Franklin.Ekoh","name":"Franklin Ekoh","avatar_template":"/user_avatar/discuss.layer5.io/franklin.ekoh/{size}/573_2.png","trust_level":0},{"id":584,"username":"measutosh","name":"Asutosh Panda","avatar_template":"/user_avatar/discuss.layer5.io/measutosh/{size}/556_2.png","trust_level":0},{"id":164,"username":"Axit_Patel","name":"Axit Patel","avatar_template":"/user_avatar/discuss.layer5.io/axit_patel/{size}/297_2.png","trust_level":0},{"id":474,"username":"Pankaj.Khushalani","name":"Pankaj Khushalani","avatar_template":"/user_avatar/discuss.layer5.io/pankaj.khushalani/{size}/477_2.png","trust_level":1},{"id":22,"username":"alphaX86","name":"Aadhitya A","avatar_template":"/user_avatar/discuss.layer5.io/alphax86/{size}/51_2.png","trust_level":1}],"primary_groups":[],"flair_groups":[{"id":42,"name":"Team","flair_url":"/uploads/default/original/2X/2/217d51a6a52fec6ed215c48ec60f366eb09c02da.png","flair_bg_color":"7FFFFFF","flair_color":""}],"topic_list":{"can_create_topic":false,"per_page":30,"top_tags":["meshery","community","meetings","layer5","doubt","websites","meshmate","mesheryctl","meshery-ui","meshmap","weekly-summary","newcomers","docs","error","meshery-adapter","ux","devops","kubernetes","reactjs","announcements","cicd","discussion","docker-desktop","help","meshmodel","models","nighthawk","playground","blogpost","ci","contribute"],"tags":[{"id":71,"name":"mesheryctl","topic_count":28,"staff":false,"description":null}],"topics":[{"id":5200,"title":"Looking for a meshmate to help with first PR","fancy_title":"Looking for a meshmate to help with first PR","slug":"looking-for-a-meshmate-to-help-with-first-pr","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2024-05-30T14:54:11.455Z","last_posted_at":"2024-05-30T15:21:44.720Z","bumped":true,"bumped_at":"2024-05-30T15:21:44.720Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","meshmate","mesheryctl","meshery-ui","meshmap"],"tags_descriptions":{},"views":40,"like_count":0,"has_summary":false,"last_poster_username":"Yash.Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2729,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster, Accepted Answer","user_id":826,"primary_group_id":null,"flair_group_id":42}]},{"id":4862,"title":"Not able to access Ports during mesheryctl system start","fancy_title":"Not able to access Ports during mesheryctl system start","slug":"not-able-to-access-ports-during-mesheryctl-system-start","posts_count":5,"reply_count":2,"highest_post_number":5,"image_url":null,"created_at":"2024-03-20T14:22:15.519Z","last_posted_at":"2024-04-02T17:09:50.834Z","bumped":true,"bumped_at":"2024-04-02T17:09:50.834Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":165,"like_count":4,"has_summary":false,"last_poster_username":"vishalvivekm","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":2573,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42}]},{"id":4769,"title":"Tip: Series of commands to generate Meshery's model registry","fancy_title":"Tip: Series of commands to generate Meshery’s model registry","slug":"tip-series-of-commands-to-generate-mesherys-model-registry","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2024-03-05T21:08:15.434Z","last_posted_at":"2024-03-05T21:08:15.692Z","bumped":true,"bumped_at":"2024-03-05T23:23:02.788Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl","models","registry"],"tags_descriptions":{},"views":113,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4729,"title":"Error while connecting minikube on meshery","fancy_title":"Error while connecting minikube on meshery","slug":"error-while-connecting-minikube-on-meshery","posts_count":8,"reply_count":4,"highest_post_number":8,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/6/647938555bf6f688e5948dbcd556a7f31295c198_2_1024x241.png","created_at":"2024-02-27T19:49:17.969Z","last_posted_at":"2024-02-28T06:45:12.972Z","bumped":true,"bumped_at":"2024-02-28T06:45:12.972Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl","minikube"],"tags_descriptions":{},"views":215,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2265,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4203,"title":"Error while installing kubernetes","fancy_title":"Error while installing kubernetes","slug":"error-while-installing-kubernetes","posts_count":8,"reply_count":3,"highest_post_number":8,"image_url":"https://discuss.layer5.io/uploads/default/original/2X/1/19b0b718414aacb65539c6358395e33b1ef1c58a.png","created_at":"2023-11-17T09:50:47.335Z","last_posted_at":"2024-01-06T19:48:47.490Z","bumped":true,"bumped_at":"2024-01-07T12:15:59.462Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl","kubernetes"],"tags_descriptions":{},"views":301,"like_count":4,"has_summary":false,"last_poster_username":"Abdur","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster, Accepted Answer","user_id":1890,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":788,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":2305,"primary_group_id":null,"flair_group_id":null}]},{"id":4332,"title":"What port does mesheryctl work on generally?","fancy_title":"What port does mesheryctl work on generally?","slug":"what-port-does-mesheryctl-work-on-generally","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":null,"created_at":"2023-12-12T19:14:38.103Z","last_posted_at":"2023-12-12T19:18:04.646Z","bumped":true,"bumped_at":"2023-12-12T19:18:04.646Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":181,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":2228,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":4284,"title":"Docker compose not available issue while running mesheryctl system start command","fancy_title":"Docker compose not available issue while running mesheryctl system start command","slug":"docker-compose-not-available-issue-while-running-mesheryctl-system-start-command","posts_count":5,"reply_count":2,"highest_post_number":5,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/d/d5777457926033c4fdd5f7a304d83ccdf3031de3_2_1024x195.png","created_at":"2023-12-04T13:36:32.550Z","last_posted_at":"2023-12-04T13:47:56.215Z","bumped":true,"bumped_at":"2023-12-04T13:47:56.215Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":236,"like_count":2,"has_summary":false,"last_poster_username":"Shlok_Mishra","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster, Accepted Answer","user_id":1760,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":2177,"primary_group_id":null,"flair_group_id":null}]},{"id":3517,"title":"While Setting Environment for Meshery, Facing issue","fancy_title":"While Setting Environment for Meshery, Facing issue","slug":"while-setting-environment-for-meshery-facing-issue","posts_count":12,"reply_count":9,"highest_post_number":13,"image_url":null,"created_at":"2023-09-05T08:17:01.125Z","last_posted_at":"2023-09-29T18:43:12.784Z","bumped":true,"bumped_at":"2023-09-29T18:43:12.784Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt","mesheryctl"],"tags_descriptions":{},"views":399,"like_count":5,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":1743,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1841,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1924,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":3398,"title":"Invalid Component Error while starting meshery system","fancy_title":"Invalid Component Error while starting meshery system","slug":"invalid-component-error-while-starting-meshery-system","posts_count":3,"reply_count":0,"highest_post_number":3,"image_url":"https://discuss.layer5.io/uploads/default/original/2X/4/4733b621567b772112e69870783bfdfef14ca123.png","created_at":"2023-08-18T07:11:09.570Z","last_posted_at":"2023-08-18T19:54:36.146Z","bumped":true,"bumped_at":"2023-08-18T19:54:36.146Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl","error"],"tags_descriptions":{},"views":276,"like_count":0,"has_summary":false,"last_poster_username":"Yash_Sharma","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":1681,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":1354,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null}]},{"id":3393,"title":"Mesheryctl is not updating on the latest macOS Sonoma beta. Homebrew is giving me some error. Please help","fancy_title":"Mesheryctl is not updating on the latest macOS Sonoma beta. Homebrew is giving me some error. Please help","slug":"mesheryctl-is-not-updating-on-the-latest-macos-sonoma-beta-homebrew-is-giving-me-some-error-please-help","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/1/1c40483fc408e522cbc32ea26db30dfdf503cbcb_2_1024x661.jpeg","created_at":"2023-08-17T18:02:39.821Z","last_posted_at":"2023-08-17T18:02:39.962Z","bumped":true,"bumped_at":"2023-08-17T18:02:39.962Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":266,"like_count":0,"has_summary":false,"last_poster_username":"kituuu","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":1669,"primary_group_id":null,"flair_group_id":null}]},{"id":3347,"title":"New Performance features in mesheryctl","fancy_title":"New Performance features in mesheryctl","slug":"new-performance-features-in-mesheryctl","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2023-08-09T10:22:02.044Z","last_posted_at":"2023-08-10T13:50:25.400Z","bumped":true,"bumped_at":"2023-08-10T13:50:25.400Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl","performance"],"tags_descriptions":{},"views":245,"like_count":5,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":698,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1100,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":3307,"title":"Certificates signed by unknown authority","fancy_title":"Certificates signed by unknown authority","slug":"certificates-signed-by-unknown-authority","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/8/8d784d54f1dc9ba8009357061f404b83adf061ec_2_1024x576.png","created_at":"2023-08-03T09:21:00.874Z","last_posted_at":"2023-08-06T15:16:54.583Z","bumped":true,"bumped_at":"2023-08-06T15:16:54.583Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":403,"like_count":2,"has_summary":false,"last_poster_username":"parth721","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":1537,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":1478,"primary_group_id":null,"flair_group_id":null}]},{"id":3200,"title":"`systemctl` unable to get context even if they are available","fancy_title":"`systemctl` unable to get context even if they are available","slug":"systemctl-unable-to-get-context-even-if-they-are-available","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/0/07c8a3ed81a4055549e8755471c5826f88d1c4ed_2_1024x272.png","created_at":"2023-07-20T10:19:38.095Z","last_posted_at":"2023-07-20T10:19:38.254Z","bumped":true,"bumped_at":"2023-07-20T10:19:38.254Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":282,"like_count":0,"has_summary":false,"last_poster_username":"luigidematteis","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":1563,"primary_group_id":null,"flair_group_id":null}]},{"id":3132,"title":"Can we login using `mesheryctl` without opening browser, with token or something similar","fancy_title":"Can we login using `mesheryctl` without opening browser, with token or something similar","slug":"can-we-login-using-mesheryctl-without-opening-browser-with-token-or-something-similar","posts_count":6,"reply_count":2,"highest_post_number":6,"image_url":null,"created_at":"2023-07-13T18:10:34.450Z","last_posted_at":"2023-07-15T00:58:32.029Z","bumped":true,"bumped_at":"2023-07-15T00:58:32.029Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":401,"like_count":0,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":132,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":621,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":2578,"title":"Error while running mesheryctl system login command","fancy_title":"Error while running mesheryctl system login command","slug":"error-while-running-mesheryctl-system-login-command","posts_count":9,"reply_count":6,"highest_post_number":9,"image_url":null,"created_at":"2023-04-20T15:38:21.992Z","last_posted_at":"2023-07-04T11:31:05.634Z","bumped":true,"bumped_at":"2023-07-04T11:31:05.634Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":364,"like_count":1,"has_summary":false,"last_poster_username":"Suhail.Khan","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":1198,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":33,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42},{"extras":"latest","description":"Most Recent Poster","user_id":683,"primary_group_id":null,"flair_group_id":null}]},{"id":2761,"title":"Mesheryctl system login not stopping (after signed in successfully)","fancy_title":"Mesheryctl system login not stopping (after signed in successfully)","slug":"mesheryctl-system-login-not-stopping-after-signed-in-successfully","posts_count":8,"reply_count":3,"highest_post_number":8,"image_url":null,"created_at":"2023-05-19T08:56:02.317Z","last_posted_at":"2023-05-25T18:51:08.318Z","bumped":true,"bumped_at":"2023-05-25T18:51:08.318Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":349,"like_count":4,"has_summary":false,"last_poster_username":"aminos","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":31,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":14,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":975,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42},{"extras":null,"description":"Frequent Poster","user_id":950,"primary_group_id":null,"flair_group_id":null}]},{"id":2593,"title":"Uneven way through which meshery opens up","fancy_title":"Uneven way through which meshery opens up","slug":"uneven-way-through-which-meshery-opens-up","posts_count":6,"reply_count":2,"highest_post_number":7,"image_url":"https://discuss.layer5.io/uploads/default/optimized/2X/d/d70122958b3dee39862d797a881201f4fe43b383_2_1024x491.jpeg","created_at":"2023-04-22T10:39:32.794Z","last_posted_at":"2023-04-24T21:07:36.711Z","bumped":true,"bumped_at":"2023-04-24T21:07:36.711Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":352,"like_count":3,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":1093,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":950,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":2289,"title":"Unable to start Meshery","fancy_title":"Unable to start Meshery","slug":"unable-to-start-meshery","posts_count":13,"reply_count":9,"highest_post_number":13,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/2d7c670abc0c8005c2fcc94ebe53818ce7a531fb_2_1024x477.png","created_at":"2023-03-02T02:17:44.628Z","last_posted_at":"2023-03-05T19:31:41.968Z","bumped":true,"bumped_at":"2023-03-05T19:31:41.968Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":444,"like_count":3,"has_summary":false,"last_poster_username":"Samarth_Mayya","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":974,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1733,"title":"Facing an error in setting up meshery locally","fancy_title":"Facing an error in setting up meshery locally","slug":"facing-an-error-in-setting-up-meshery-locally","posts_count":10,"reply_count":7,"highest_post_number":10,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/6af1df0b3f5f026fad9c9fc77bf79eb4b7505f96_2_1024x393.png","created_at":"2022-12-21T06:21:35.182Z","last_posted_at":"2022-12-23T12:41:51.234Z","bumped":true,"bumped_at":"2022-12-23T12:41:51.234Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":483,"like_count":4,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster, Accepted Answer","user_id":736,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":234,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":75,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1721,"title":"Error installing Meshery on Ubuntu 22.04","fancy_title":"Error installing Meshery on Ubuntu 22.04","slug":"error-installing-meshery-on-ubuntu-22-04","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2022-12-17T03:40:32.909Z","last_posted_at":"2022-12-21T08:39:49.932Z","bumped":true,"bumped_at":"2022-12-21T08:39:49.932Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","doubt","mesheryctl"],"tags_descriptions":{},"views":341,"like_count":0,"has_summary":false,"last_poster_username":"Anita-ihuman","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":747,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":234,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":11,"primary_group_id":null,"flair_group_id":null}]},{"id":1693,"title":"Error deploying mesheryctl","fancy_title":"Error deploying mesheryctl","slug":"error-deploying-mesheryctl","posts_count":11,"reply_count":3,"highest_post_number":11,"image_url":"https://discuss.layer5.io/uploads/default/original/1X/ce65538391191f085beb201b066bdbd42c25440c.png","created_at":"2022-12-07T17:45:00.566Z","last_posted_at":"2022-12-19T22:07:24.692Z","bumped":true,"bumped_at":"2022-12-19T22:07:24.692Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","layer5","mesheryctl","error"],"tags_descriptions":{},"views":631,"like_count":0,"has_summary":false,"last_poster_username":"Ebi","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":729,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1644,"title":"Not able to choose an adapter an install mesheryctl command","fancy_title":"Not able to choose an adapter an install mesheryctl command","slug":"not-able-to-choose-an-adapter-an-install-mesheryctl-command","posts_count":6,"reply_count":1,"highest_post_number":6,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/058a1d0fc02212235b04100d4437cb439f3dc28b_2_1024x576.png","created_at":"2022-11-08T14:14:28.390Z","last_posted_at":"2022-11-08T16:55:23.897Z","bumped":true,"bumped_at":"2022-11-08T16:55:23.897Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["community","layer5","doubt","mesheryctl","meshery-adapter"],"tags_descriptions":{},"views":414,"like_count":2,"has_summary":false,"last_poster_username":"Kamal.Singh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":null,"description":"Original Poster","user_id":688,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster, Accepted Answer","user_id":33,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":491,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":692,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":342,"primary_group_id":null,"flair_group_id":null}]},{"id":1544,"title":"Unable to setup meshery docs on local (mac)","fancy_title":"Unable to setup meshery docs on local (mac)","slug":"unable-to-setup-meshery-docs-on-local-mac","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/fd93033b53dab57622bb0f256e272b064abb1f94_2_1024x330.png","created_at":"2022-10-06T11:09:35.270Z","last_posted_at":"2022-10-06T11:09:35.478Z","bumped":true,"bumped_at":"2022-10-07T07:46:14.715Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","mesheryctl"],"tags_descriptions":{},"views":364,"like_count":0,"has_summary":false,"last_poster_username":"Franklin.Ekoh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":568,"primary_group_id":null,"flair_group_id":null}]},{"id":1501,"title":"Issue while setting up meshery using GItpod","fancy_title":"Issue while setting up meshery using GItpod","slug":"issue-while-setting-up-meshery-using-gitpod","posts_count":2,"reply_count":0,"highest_post_number":2,"image_url":"https://discuss.layer5.io/uploads/default/original/1X/456154a8125d86462659ceab5ba52f1bcad61472.png","created_at":"2022-09-27T11:59:53.664Z","last_posted_at":"2022-09-27T12:03:23.747Z","bumped":true,"bumped_at":"2022-09-27T12:03:23.747Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["meshery","community","doubt","mesheryctl"],"tags_descriptions":{},"views":319,"like_count":0,"has_summary":false,"last_poster_username":"Kamal.Singh","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":584,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":342,"primary_group_id":null,"flair_group_id":null}]},{"id":1162,"title":"How to run Mesheryctl locally in my system","fancy_title":"How to run Mesheryctl locally in my system","slug":"how-to-run-mesheryctl-locally-in-my-system","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2022-09-03T05:27:31.951Z","last_posted_at":"2022-09-20T04:17:32.231Z","bumped":true,"bumped_at":"2022-09-20T04:17:32.231Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":387,"like_count":1,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":null,"description":"Original Poster","user_id":164,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":474,"primary_group_id":null,"flair_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":1000,"title":"Mesheryctl app import: Design Spec Review","fancy_title":"Mesheryctl app import: Design Spec Review","slug":"mesheryctl-app-import-design-spec-review","posts_count":3,"reply_count":1,"highest_post_number":3,"image_url":null,"created_at":"2022-07-27T15:27:25.654Z","last_posted_at":"2022-08-05T07:23:07.420Z","bumped":true,"bumped_at":"2022-08-05T07:23:07.420Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl","design-review","kubernetes-manifest","helm-chart"],"tags_descriptions":{},"views":479,"like_count":1,"has_summary":false,"last_poster_username":"alphaX86","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":22,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]},{"id":977,"title":"Meshery Not Starting (mesheryctl)","fancy_title":"Meshery Not Starting (mesheryctl)","slug":"meshery-not-starting-mesheryctl","posts_count":4,"reply_count":2,"highest_post_number":4,"image_url":"https://discuss.layer5.io/uploads/default/optimized/1X/1d1da596f747d83c42f3cb5b692c866d99c69d76_2_1024x214.png","created_at":"2022-07-27T04:34:55.867Z","last_posted_at":"2022-07-27T09:23:10.178Z","bumped":true,"bumped_at":"2022-07-27T09:23:10.178Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["community","mesheryctl"],"tags_descriptions":{},"views":318,"like_count":2,"has_summary":false,"last_poster_username":"harkiratsm","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":true,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster, Accepted Answer","user_id":234,"primary_group_id":null,"flair_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":22,"primary_group_id":null,"flair_group_id":null}]},{"id":911,"title":"Call for Feedback: Behavior changes in `mesheryctl mesh`","fancy_title":"Call for Feedback: Behavior changes in `mesheryctl mesh`","slug":"call-for-feedback-behavior-changes-in-mesheryctl-mesh","posts_count":1,"reply_count":0,"highest_post_number":1,"image_url":null,"created_at":"2022-07-06T15:09:16.245Z","last_posted_at":"2022-07-06T15:09:16.350Z","bumped":true,"bumped_at":"2022-07-06T15:09:16.350Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"tags":["mesheryctl"],"tags_descriptions":{},"views":270,"like_count":1,"has_summary":false,"last_poster_username":"Lee","category_id":5,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"posters":[{"extras":"latest single","description":"Original Poster, Most Recent Poster","user_id":3,"primary_group_id":null,"flair_group_id":42}]}]}} \ No newline at end of file From 3f7f47b6e1b7a95da7dcc8dda4f42c46f362f0a2 Mon Sep 17 00:00:00 2001 From: MUzairS15 Date: Sat, 8 Jun 2024 00:12:28 +0000 Subject: [PATCH 14/15] New Models generated Signed-off-by: l5io --- .../components/AzureAssignedIdentity.json | 8 +-- .../v1.0.0/components/AzureIdentity.json | 8 +-- .../components/AzureIdentityBinding.json | 8 +-- .../components/AzurePodIdentityException.json | 8 +-- .../v1.0.0/components/ExternalDNS.json | 6 +- .../ace/2024.6.3/v1.0.0/components/Plan.json | 6 +- .../2024.6.3/v1.0.0/components/Product.json | 6 +- .../2024.6.3/v1.0.0/components/Trickster.json | 6 +- .../v1.0.0/components/TricksterBackend.json | 6 +- .../v1.0.0/components/TricksterCache.json | 6 +- .../components/TricksterRequestRewriter.json | 6 +- .../v1.0.0/components/TricksterRule.json | 6 +- .../components/TricksterTracingConfig.json | 6 +- .../HorizontalRunnerAutoscaler.json | 4 +- .../0.1.2/v1.0.0/components/Runner.json | 4 +- .../v1.0.0/components/RunnerDeployment.json | 4 +- .../v1.0.0/components/RunnerReplicaSet.json | 4 +- .../0.1.2/v1.0.0/components/RunnerSet.json | 4 +- .../v1.0.0/components/AdminConsole.json | 4 +- .../v1.0.0/components/AerospikeCluster.json | 6 +- .../v1.0.0/components/AIPodAutoscaler.json | 6 +- .../v1.0.0/components/Configuration.json | 6 +- .../0.12.55/v1.0.0/components/Instance.json | 6 +- .../components/AzureAssignedIdentity.json | 2 - .../v1.0.0/components/AzureIdentity.json | 2 - .../components/AzureIdentityBinding.json | 2 - .../components/AzurePodIdentityException.json | 2 - .../components/ClickHouseInstallation.json | 2 - .../ClickHouseInstallationTemplate.json | 2 - .../ClickHouseKeeperInstallation.json | 2 - .../ClickHouseOperatorConfiguration.json | 2 - .../0.13.0/v1.0.0/components/NodeFeature.json | 4 +- .../v1.0.0/components/NodeFeatureRule.json | 4 +- .../v1.0.0/components/AntreaAgentInfo.json | 4 +- .../components/AntreaControllerInfo.json | 4 +- .../2.0.0/v1.0.0/components/ClusterGroup.json | 4 +- .../components/ClusterNetworkPolicy.json | 4 +- .../2.0.0/v1.0.0/components/Egress.json | 4 +- .../v1.0.0/components/ExternalEntity.json | 4 +- .../v1.0.0/components/ExternalIPPool.json | 4 +- .../2.0.0/v1.0.0/components/ExternalNode.json | 4 +- .../antrea/2.0.0/v1.0.0/components/Group.json | 4 +- .../2.0.0/v1.0.0/components/IPPool.json | 4 +- .../v1.0.0/components/NetworkPolicy.json | 4 +- .../components/SupportBundleCollection.json | 4 +- .../antrea/2.0.0/v1.0.0/components/Tier.json | 4 +- .../2.0.0/v1.0.0/components/Traceflow.json | 4 +- .../v1.0.0/components/TrafficControl.json | 4 +- .../0.3.0/v1.0.0/components/Chaos.json | 4 +- .../0.3.0/v1.0.0/components/ComputeNode.json | 6 +- .../components/ShardingSphereProxy.json | 6 +- .../ShardingSphereProxyServerConfig.json | 6 +- .../0.3.0/v1.0.0/components/StorageNode.json | 4 +- .../v1.0.0/components/StorageProvider.json | 4 +- .../2.34.0/v1.0.0/components/Agent.json | 4 +- .../2.34.0/v1.0.0/components/Controller.json | 4 +- .../2.34.0/v1.0.0/components/Policy.json | 4 +- .../components/ApisixClusterConfig.json | 4 +- .../v1.0.0/components/ApisixConsumer.json | 4 +- .../v1.0.0/components/ApisixGlobalRule.json | 4 +- .../v1.0.0/components/ApisixPluginConfig.json | 4 +- .../0.14.0/v1.0.0/components/ApisixRoute.json | 4 +- .../0.14.0/v1.0.0/components/ApisixTls.json | 4 +- .../v1.0.0/components/ApisixUpstream.json | 4 +- .../components/ApisixClusterConfig.json | 10 ++- .../v1.0.0/components/ApisixConsumer.json | 8 +-- .../v1.0.0/components/ApisixGlobalRule.json | 8 +-- .../v1.0.0/components/ApisixPluginConfig.json | 8 +-- .../3.2.2/v1.0.0/components/ApisixRoute.json | 6 +- .../3.2.2/v1.0.0/components/ApisixTls.json | 8 +-- .../v1.0.0/components/ApisixUpstream.json | 8 +-- .../0.8.3/v1.0.0/components/Application.json | 6 +- .../v1.0.0/components/BackendGroup.json | 2 - .../v1.0.0/components/GatewayRoute.json | 2 - .../1.13.0/v1.0.0/components/Mesh.json | 2 - .../v1.0.0/components/VirtualGateway.json | 2 - .../1.13.0/v1.0.0/components/VirtualNode.json | 2 - .../v1.0.0/components/VirtualRouter.json | 2 - .../v1.0.0/components/VirtualService.json | 2 - .../0.5.0/v1.0.0/components/AppProject.json | 6 +- .../0.5.0/v1.0.0/components/Application.json | 6 +- .../v1.0.0/components/ApplicationSet.json | 6 +- .../0.5.0/v1.0.0/components/ArgoCD.json | 4 +- .../0.5.0/v1.0.0/components/ArgoCDExport.json | 4 +- .../v1.0.0/components/ArmoryAccount.json | 4 +- .../v1.0.0/components/SpinnakerService.json | 4 +- .../v1.0.0/components/AWSAPIGateway.json | 6 +- .../v1.0.12/v1.0.0/components/API.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.12/v1.0.0/components/Authorizer.json | 4 +- .../v1.0.12/v1.0.0/components/Deployment.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/Integration.json | 4 +- .../v1.0.12/v1.0.0/components/Route.json | 4 +- .../v1.0.12/v1.0.0/components/Stage.json | 4 +- .../v1.0.12/v1.0.0/components/VPCLink.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/ScalableTarget.json | 4 +- .../v1.0.0/components/ScalingPolicy.json | 6 +- .../v1.0.0/components/AdoptedResource.json | 8 +-- .../v1.0.0/components/CachePolicy.json | 10 ++- .../v1.0.0/components/Distribution.json | 10 ++- .../v1.0.0/components/FieldExport.json | 8 +-- .../v0.0.11/v1.0.0/components/Function.json | 10 ++- .../components/OriginRequestPolicy.json | 10 ++- .../components/ResponseHeadersPolicy.json | 10 ++- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/EventDataStore.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.11/v1.0.0/components/Trail.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v0.0.8/v1.0.0/components/FieldExport.json | 4 +- .../v0.0.8/v1.0.0/components/MetricAlarm.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v0.0.8/v1.0.0/components/FieldExport.json | 4 +- .../v0.0.8/v1.0.0/components/LogGroup.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 2 - .../v0.0.6/v1.0.0/components/DBCluster.json | 2 - .../v0.0.6/v1.0.0/components/DBInstance.json | 2 - .../v1.0.0/components/DBSubnetGroup.json | 2 - .../v0.0.6/v1.0.0/components/FieldExport.json | 2 - .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.2.11/v1.0.0/components/Backup.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/GlobalTable.json | 4 +- .../v1.2.11/v1.0.0/components/Table.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/DHCPOptions.json | 4 +- .../v1.0.0/components/ElasticIPAddress.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.2.10/v1.0.0/components/FlowLog.json | 4 +- .../v1.2.10/v1.0.0/components/Instance.json | 4 +- .../v1.0.0/components/InternetGateway.json | 4 +- .../v1.2.10/v1.0.0/components/NATGateway.json | 4 +- .../v1.2.10/v1.0.0/components/NetworkACL.json | 4 +- .../v1.2.10/v1.0.0/components/RouteTable.json | 4 +- .../v1.0.0/components/SecurityGroup.json | 4 +- .../v1.2.10/v1.0.0/components/Subnet.json | 4 +- .../v1.0.0/components/TransitGateway.json | 4 +- .../v1.2.10/v1.0.0/components/VPC.json | 4 +- .../v1.0.0/components/VPCEndpoint.json | 4 +- .../VPCEndpointServiceConfiguration.json | 6 +- .../components/VPCPeeringConnection.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../components/PullThroughCacheRule.json | 4 +- .../v1.0.15/v1.0.0/components/Repository.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 2 - .../v0.0.6/v1.0.0/components/Cluster.json | 2 - .../v0.0.6/v1.0.0/components/FieldExport.json | 2 - .../v0.0.6/v1.0.0/components/Service.json | 2 - .../v1.0.0/components/TaskDefinition.json | 2 - .../v0.0.7/v1.0.0/components/AccessPoint.json | 6 +- .../v1.0.0/components/AdoptedResource.json | 6 +- .../v0.0.7/v1.0.0/components/FieldExport.json | 6 +- .../v0.0.7/v1.0.0/components/FileSystem.json | 6 +- .../v0.0.7/v1.0.0/components/MountTarget.json | 6 +- .../v1.4.1/v1.0.0/components/AccessEntry.json | 6 +- .../v1.4.1/v1.0.0/components/Addon.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.4.1/v1.0.0/components/Cluster.json | 4 +- .../v1.0.0/components/FargateProfile.json | 4 +- .../v1.4.1/v1.0.0/components/FieldExport.json | 4 +- .../components/IdentityProviderConfig.json | 6 +- .../v1.4.1/v1.0.0/components/Nodegroup.json | 4 +- .../components/PodIdentityAssociation.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 6 +- .../components/CacheParameterGroup.json | 6 +- .../v1.0.0/components/CacheSubnetGroup.json | 6 +- .../v1.0.0/components/FieldExport.json | 6 +- .../v1.0.0/components/ReplicationGroup.json | 6 +- .../v0.0.30/v1.0.0/components/Snapshot.json | 6 +- .../v0.0.30/v1.0.0/components/User.json | 6 +- .../v0.0.30/v1.0.0/components/UserGroup.json | 6 +- .../v1.0.0/components/AdoptedResource.json | 6 +- .../components/ElasticsearchDomain.json | 6 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.10/v1.0.0/components/JobRun.json | 4 +- .../v1.0.0/components/VirtualCluster.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.11/v1.0.0/components/Archive.json | 4 +- .../v1.0.11/v1.0.0/components/Endpoint.json | 4 +- .../v1.0.11/v1.0.0/components/EventBus.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.11/v1.0.0/components/Rule.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 6 +- .../v1.3.8/v1.0.0/components/FieldExport.json | 6 +- .../v1.3.8/v1.0.0/components/Group.json | 6 +- .../v1.0.0/components/InstanceProfile.json | 6 +- .../components/OpenIDConnectProvider.json | 6 +- .../v1.3.8/v1.0.0/components/Policy.json | 6 +- .../v1.3.8/v1.0.0/components/Role.json | 6 +- .../v1.3.8/v1.0.0/components/User.json | 6 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v0.0.15/v1.0.0/components/Stream.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.13/v1.0.0/components/Alias.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.13/v1.0.0/components/Grant.json | 4 +- .../v1.0.13/v1.0.0/components/Key.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.5.0/v1.0.0/components/Alias.json | 6 +- .../v1.0.0/components/CodeSigningConfig.json | 4 +- .../v1.0.0/components/EventSourceMapping.json | 4 +- .../v1.5.0/v1.0.0/components/FieldExport.json | 4 +- .../v1.5.0/v1.0.0/components/Function.json | 4 +- .../v1.0.0/components/FunctionURLConfig.json | 4 +- .../v1.0.0/components/LayerVersion.json | 4 +- .../v1.5.0/v1.0.0/components/Version.json | 6 +- .../v1.0.2/v1.0.0/components/ACL.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.2/v1.0.0/components/Cluster.json | 4 +- .../v1.0.2/v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/ParameterGroup.json | 4 +- .../v1.0.2/v1.0.0/components/Snapshot.json | 4 +- .../v1.0.2/v1.0.0/components/SubnetGroup.json | 4 +- .../v1.0.2/v1.0.0/components/User.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v0.0.34/v1.0.0/components/Broker.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../0.2.0/v1.0.0/components/Terminator.json | 2 - .../v1.0.0/components/AdoptedResource.json | 2 - .../v0.0.25/v1.0.0/components/Domain.json | 2 - .../v1.0.0/components/FieldExport.json | 2 - .../v1.0.0/components/AdoptedResource.json | 4 +- .../components/AlertManagerDefinition.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../components/LoggingConfiguration.json | 4 +- .../components/RuleGroupsNamespace.json | 4 +- .../v1.2.11/v1.0.0/components/Workspace.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.2.5/v1.0.0/components/DBCluster.json | 4 +- .../components/DBClusterParameterGroup.json | 4 +- .../v1.2.5/v1.0.0/components/DBInstance.json | 4 +- .../v1.0.0/components/DBParameterGroup.json | 4 +- .../v1.2.5/v1.0.0/components/DBProxy.json | 4 +- .../v1.0.0/components/DBSubnetGroup.json | 4 +- .../v1.2.5/v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/GlobalCluster.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/HealthCheck.json | 6 +- .../v0.0.14/v1.0.0/components/HostedZone.json | 4 +- .../v0.0.14/v1.0.0/components/RecordSet.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v0.0.7/v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/ResolverEndpoint.json | 4 +- .../v1.0.0/components/ResolverRule.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.12/v1.0.0/components/Bucket.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.2.11/v1.0.0/components/App.json | 4 +- .../components/DataQualityJobDefinition.json | 4 +- .../v1.2.11/v1.0.0/components/Domain.json | 4 +- .../v1.2.11/v1.0.0/components/Endpoint.json | 4 +- .../v1.0.0/components/EndpointConfig.json | 4 +- .../v1.0.0/components/FeatureGroup.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../components/HyperParameterTuningJob.json | 4 +- .../v1.0.0/components/InferenceComponent.json | 8 +-- .../v1.2.11/v1.0.0/components/Model.json | 4 +- .../components/ModelBiasJobDefinition.json | 4 +- .../ModelExplainabilityJobDefinition.json | 4 +- .../v1.0.0/components/ModelPackage.json | 4 +- .../v1.0.0/components/ModelPackageGroup.json | 4 +- .../components/ModelQualityJobDefinition.json | 4 +- .../v1.0.0/components/MonitoringSchedule.json | 4 +- .../v1.0.0/components/NotebookInstance.json | 4 +- .../NotebookInstanceLifecycleConfig.json | 4 +- .../v1.2.11/v1.0.0/components/Pipeline.json | 4 +- .../v1.0.0/components/PipelineExecution.json | 4 +- .../v1.0.0/components/ProcessingJob.json | 4 +- .../v1.0.0/components/TrainingJob.json | 4 +- .../v1.0.0/components/TransformJob.json | 4 +- .../v1.0.0/components/UserProfile.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v0.0.7/v1.0.0/components/FieldExport.json | 4 +- .../v0.0.7/v1.0.0/components/Secret.json | 4 +- .../v1.0.11/v1.0.0/components/Activity.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../v1.0.0/components/StateMachine.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 4 +- .../v1.0.0/components/FieldExport.json | 4 +- .../components/PlatformApplication.json | 4 +- .../v1.0.0/components/PlatformEndpoint.json | 4 +- .../v1.0.0/components/Subscription.json | 4 +- .../v1.0.11/v1.0.0/components/Topic.json | 4 +- .../v1.0.0/components/AdoptedResource.json | 10 ++- .../v1.0.0/components/FieldExport.json | 10 ++- .../v1.0.13/v1.0.0/components/Queue.json | 10 ++- .../v1.0.0/components/TargetGroupBinding.json | 6 +- .../1.18.2/v1.0.0/components/ENIConfig.json | 6 +- .../v1.0.0/components/PolicyEndpoint.json | 4 +- .../2.18.0/v1.0.0/components/AWX.json | 4 +- .../2.18.0/v1.0.0/components/AWXBackup.json | 6 +- .../v1.0.0/components/AWXMeshIngress.json | 4 +- .../2.18.0/v1.0.0/components/AWXRestore.json | 4 +- .../6.7.9/v1.0.0/components/AuthService.json | 2 - .../v1.0.0/components/ConsulResolver.json | 2 - .../6.7.9/v1.0.0/components/DevPortal.json | 2 - .../6.7.9/v1.0.0/components/Filter.json | 2 - .../6.7.9/v1.0.0/components/FilterPolicy.json | 2 - .../6.7.9/v1.0.0/components/Host.json | 2 - .../KubernetesEndpointResolver.json | 2 - .../components/KubernetesServiceResolver.json | 2 - .../6.7.9/v1.0.0/components/LogService.json | 2 - .../6.7.9/v1.0.0/components/Mapping.json | 2 - .../6.7.9/v1.0.0/components/Module.json | 2 - .../6.7.9/v1.0.0/components/Project.json | 2 - .../v1.0.0/components/ProjectController.json | 2 - .../v1.0.0/components/ProjectRevision.json | 2 - .../6.7.9/v1.0.0/components/RateLimit.json | 2 - .../v1.0.0/components/RateLimitService.json | 2 - .../6.7.9/v1.0.0/components/TCPMapping.json | 2 - .../6.7.9/v1.0.0/components/TLSContext.json | 2 - .../v1.0.0/components/TracingService.json | 2 - .../v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../40.1.1/v1.0.0/components/Certificate.json | 2 - .../v1.0.0/components/CertificateRequest.json | 2 - .../40.1.1/v1.0.0/components/Challenge.json | 2 - .../v1.0.0/components/ClusterIssuer.json | 2 - .../40.1.1/v1.0.0/components/Issuer.json | 2 - .../40.1.1/v1.0.0/components/Order.json | 2 - .../40.1.1/v1.0.0/components/PodMonitor.json | 2 - .../40.1.1/v1.0.0/components/Probe.json | 2 - .../40.1.1/v1.0.0/components/Prometheus.json | 2 - .../v1.0.0/components/PrometheusRule.json | 2 - .../v1.0.0/components/ServiceMonitor.json | 2 - .../40.1.1/v1.0.0/components/ThanosRuler.json | 2 - .../components/AuthorizationPolicy.json | 6 +- .../v1.0.0/components/DestinationRule.json | 2 - .../1.22.1/v1.0.0/components/EnvoyFilter.json | 2 - .../1.22.1/v1.0.0/components/Gateway.json | 2 - .../v1.0.0/components/PeerAuthentication.json | 2 - .../1.22.1/v1.0.0/components/ProxyConfig.json | 2 - .../components/RequestAuthentication.json | 6 +- .../v1.0.0/components/ServiceEntry.json | 2 - .../1.22.1/v1.0.0/components/Sidecar.json | 2 - .../1.22.1/v1.0.0/components/Telemetry.json | 2 - .../v1.0.0/components/VirtualService.json | 2 - .../1.22.1/v1.0.0/components/WasmPlugin.json | 2 - .../v1.0.0/components/WorkloadEntry.json | 2 - .../v1.0.0/components/WorkloadGroup.json | 2 - .../v1.0.0/components/AccountBinding.json | 6 +- .../1.8.15/v1.0.0/components/Invite.json | 6 +- .../v1.0.0/components/MySQLDatabase.json | 6 +- .../1.8.15/v1.0.0/components/MySQLUser.json | 6 +- .../1.8.15/v1.0.0/components/Project.json | 6 +- .../v1.0.0/components/BitwardenSecret.json | 2 - .../v1.0.0/components/BitwardenTemplate.json | 2 - .../v1.0.0/components/RegistryCredential.json | 2 - .../v1.0.0/components/BottlerocketShadow.json | 6 +- .../0.1.6/v1.0.0/components/Backup.json | 6 +- .../0.1.6/v1.0.0/components/Restore.json | 6 +- .../v1.0.0/components/Bundle.json | 6 +- .../v1.0.0/components/CloudProvider.json | 6 +- .../components/ClusterAuthInfoTemplate.json | 2 - .../v1.0.0/components/ClusterInfo.json | 2 - .../v1.0.0/components/ClusterUserAuth.json | 2 - .../v1.0.0/components/Credential.json | 2 - .../v1.0.0/components/EditorOption.json | 6 +- .../v1.0.0/components/MachineType.json | 6 +- .../v1.0.0/components/OptionsEditor.json | 6 +- .../2022.4.14/v1.0.0/components/OrgUser.json | 6 +- .../2022.4.14/v1.0.0/components/Plan.json | 6 +- .../2022.4.14/v1.0.0/components/Product.json | 6 +- .../2022.4.14/v1.0.0/components/Team.json | 6 +- .../2022.4.14/v1.0.0/components/TeamUser.json | 6 +- .../2.0.1/v1.0.0/components/Build.json | 6 +- .../2.0.1/v1.0.0/components/CamelCatalog.json | 4 +- .../2.0.1/v1.0.0/components/Integration.json | 6 +- .../v1.0.0/components/IntegrationKit.json | 6 +- .../components/IntegrationPlatform.json | 6 +- .../2.0.1/v1.0.0/components/Kamelet.json | 6 +- .../v1.0.0/components/KameletBinding.json | 6 +- .../0.1.16/v1.0.0/components/Canary.json | 6 +- .../components/CapsuleConfiguration.json | 6 +- .../components/GlobalTenantResource.json | 6 +- .../v1.0.0/components/ProxySetting.json | 6 +- .../0.7.0-rc.1/v1.0.0/components/Tenant.json | 6 +- .../v1.0.0/components/TenantResource.json | 6 +- .../components/CassandraDatacenter.json | 2 - .../v1.0.0/components/CassandraTask.json | 2 - .../v1.0.0/components/CDPipeline.json | 4 +- .../v1.0.0/components/Stage.json | 4 +- .../1.15.0/v1.0.0/model.json | 37 +++++++++++ .../v1.0.0/components/CAProviderClass.json | 4 +- .../2.6.3/v1.0.0/components/AWSChaos.json | 6 +- .../2.6.3/v1.0.0/components/AzureChaos.json | 6 +- .../2.6.3/v1.0.0/components/BlockChaos.json | 8 +-- .../2.6.3/v1.0.0/components/DNSChaos.json | 6 +- .../2.6.3/v1.0.0/components/GCPChaos.json | 6 +- .../2.6.3/v1.0.0/components/HTTPChaos.json | 6 +- .../2.6.3/v1.0.0/components/IOChaos.json | 6 +- .../2.6.3/v1.0.0/components/JVMChaos.json | 6 +- .../2.6.3/v1.0.0/components/KernelChaos.json | 6 +- .../2.6.3/v1.0.0/components/NetworkChaos.json | 6 +- .../v1.0.0/components/PhysicalMachine.json | 6 +- .../components/PhysicalMachineChaos.json | 6 +- .../2.6.3/v1.0.0/components/PodChaos.json | 6 +- .../2.6.3/v1.0.0/components/PodHttpChaos.json | 6 +- .../2.6.3/v1.0.0/components/PodIOChaos.json | 6 +- .../v1.0.0/components/PodNetworkChaos.json | 6 +- .../v1.0.0/components/RemoteCluster.json | 8 +-- .../2.6.3/v1.0.0/components/Schedule.json | 6 +- .../2.6.3/v1.0.0/components/StatusCheck.json | 6 +- .../2.6.3/v1.0.0/components/StressChaos.json | 6 +- .../2.6.3/v1.0.0/components/TimeChaos.json | 6 +- .../2.6.3/v1.0.0/components/Workflow.json | 6 +- .../2.6.3/v1.0.0/components/WorkflowNode.json | 6 +- .../14.6.301/v1.0.0/components/AWSChaos.json | 6 +- .../v1.0.0/components/AzureChaos.json | 6 +- .../14.6.301/v1.0.0/components/DNSChaos.json | 6 +- .../14.6.301/v1.0.0/components/GCPChaos.json | 6 +- .../14.6.301/v1.0.0/components/HTTPChaos.json | 6 +- .../14.6.301/v1.0.0/components/IOChaos.json | 6 +- .../14.6.301/v1.0.0/components/JVMChaos.json | 6 +- .../v1.0.0/components/KernelChaos.json | 6 +- .../v1.0.0/components/NetworkChaos.json | 6 +- .../v1.0.0/components/PhysicalMachine.json | 6 +- .../components/PhysicalMachineChaos.json | 6 +- .../14.6.301/v1.0.0/components/PodChaos.json | 6 +- .../v1.0.0/components/PodHttpChaos.json | 6 +- .../v1.0.0/components/PodIOChaos.json | 6 +- .../v1.0.0/components/PodNetworkChaos.json | 6 +- .../14.6.301/v1.0.0/components/Schedule.json | 6 +- .../v1.0.0/components/StatusCheck.json | 6 +- .../v1.0.0/components/StressChaos.json | 6 +- .../14.6.301/v1.0.0/components/TimeChaos.json | 6 +- .../14.6.301/v1.0.0/components/Workflow.json | 6 +- .../v1.0.0/components/WorkflowNode.json | 6 +- .../1.7.0/v1.0.0/components/ChaosBlade.json | 6 +- .../1.2.0/v1.0.0/components/Environment.json | 6 +- .../v1.0.0/components/GitRepository.json | 6 +- .../v1.0.0/components/HNCConfiguration.json | 6 +- .../components/HierarchyConfiguration.json | 6 +- .../v1.0.0/components/SubnamespaceAnchor.json | 6 +- .../v1.0.0/components/ClusterObjectSync.json | 6 +- .../0.1.1/v1.0.0/components/Device.json | 6 +- .../0.1.1/v1.0.0/components/DeviceModel.json | 6 +- .../v1.0.0/components/EdgeApplication.json | 6 +- .../0.1.1/v1.0.0/components/NodeGroup.json | 6 +- .../0.1.1/v1.0.0/components/ObjectSync.json | 6 +- .../0.1.1/v1.0.0/components/Rule.json | 6 +- .../0.1.1/v1.0.0/components/RuleEndpoint.json | 6 +- .../v1.0.0/components/CloudflareTunnel.json | 6 +- .../v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../0.11.2/v1.0.0/components/PodMonitor.json | 2 - .../0.11.2/v1.0.0/components/Probe.json | 2 - .../0.11.2/v1.0.0/components/Prometheus.json | 2 - .../v1.0.0/components/PrometheusRule.json | 2 - .../v1.0.0/components/ServiceMonitor.json | 2 - .../0.11.2/v1.0.0/components/ThanosRuler.json | 2 - .../0.1.1/v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../v1.0.0/components/IngressClassParams.json | 6 +- .../0.1.1/v1.0.0/components/PodMonitor.json | 2 - .../0.1.1/v1.0.0/components/Probe.json | 2 - .../0.1.1/v1.0.0/components/Prometheus.json | 2 - .../v1.0.0/components/PrometheusRule.json | 2 - .../v1.0.0/components/ServiceMonitor.json | 2 - .../v1.0.0/components/TargetGroupBinding.json | 2 - .../0.1.1/v1.0.0/components/ThanosRuler.json | 2 - .../0.2.12/v1.0.0/components/Cluster.json | 6 +- .../v1.0.0/components/ClusterFeature.json | 6 +- .../v1.0.0/components/ResourceSyncRule.json | 6 +- .../v1.0.0/components/ServiceExport.json | 2 - .../v1.0.0/components/ServiceImport.json | 2 - .../v1.0.0/components/ClusterSecret.json | 6 +- .../0.1.0/v1.0.0/components/IPAMBlock.json | 6 +- .../0.1.0/v1.0.0/components/IPAMHandle.json | 6 +- .../0.1.0/v1.0.0/components/IPPool.json | 6 +- .../0.1.0/v1.0.0/components/VxNetPool.json | 6 +- .../cno/1.1.0/v1.0.0/components/Kafka.json | 6 +- .../1.1.0/v1.0.0/components/KafkaBridge.json | 6 +- .../1.1.0/v1.0.0/components/KafkaConnect.json | 6 +- .../v1.0.0/components/KafkaConnector.json | 6 +- .../v1.0.0/components/KafkaMirrorMaker.json | 6 +- .../v1.0.0/components/KafkaMirrorMaker2.json | 6 +- .../v1.0.0/components/KafkaRebalance.json | 6 +- .../1.1.0/v1.0.0/components/KafkaTopic.json | 6 +- .../1.1.0/v1.0.0/components/KafkaUser.json | 6 +- .../v1.0.0/components/StrimziPodSet.json | 6 +- .../0.6.1/v1.0.0/components/Alertmanager.json | 6 +- .../v1.0.0/components/AlertmanagerConfig.json | 6 +- .../0.6.1/v1.0.0/components/PodMonitor.json | 6 +- .../0.6.1/v1.0.0/components/Probe.json | 6 +- .../0.6.1/v1.0.0/components/Prometheus.json | 6 +- .../v1.0.0/components/PrometheusRule.json | 6 +- .../v1.0.0/components/ServiceMonitor.json | 6 +- .../0.6.1/v1.0.0/components/ThanosRuler.json | 6 +- .../0.1.0/v1.0.0/components/CrdbCluster.json | 2 - .../v1.0.0/components/CDStageDeploy.json | 2 - .../2.22.1/v1.0.0/components/Codebase.json | 2 - .../v1.0.0/components/CodebaseBranch.json | 2 - .../components/CodebaseImageStream.json | 2 - .../v1.0.0/components/EDPComponent.json | 10 ++- .../2.22.1/v1.0.0/components/GitServer.json | 2 - .../v1.0.0/components/JiraIssueMetadata.json | 2 - .../2.22.1/v1.0.0/components/JiraServer.json | 2 - .../2.22.1/v1.0.0/components/QuickLink.json | 10 ++- .../2.22.1/v1.0.0/components/Template.json | 6 +- .../PubSubSubscriptionTemplate.json | 6 +- .../components/PubSubTopicTemplate.json | 6 +- .../3.0.0/v1.0.0/components/Contour.json | 6 +- .../components/ContourConfiguration.json | 6 +- .../v1.0.0/components/ContourDeployment.json | 6 +- .../v1.0.0/components/ExtensionService.json | 6 +- .../3.0.0/v1.0.0/components/Gateway.json | 6 +- .../3.0.0/v1.0.0/components/GatewayClass.json | 6 +- .../3.0.0/v1.0.0/components/HTTPProxy.json | 6 +- .../3.0.0/v1.0.0/components/HTTPRoute.json | 6 +- .../3.0.0/v1.0.0/components/TCPRoute.json | 6 +- .../components/TLSCertificateDelegation.json | 6 +- .../3.0.0/v1.0.0/components/TLSRoute.json | 6 +- .../3.0.0/v1.0.0/components/UDPRoute.json | 6 +- .../v1.0.0/components/AdvancedCronJob.json | 6 +- .../v1.0.0/components/Alert.json | 6 +- .../v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../v1.0.0/components/AnalyticDeployment.json | 6 +- .../v1.0.0/components/AuthService.json | 6 +- .../v1.0.0/components/BroadcastJob.json | 6 +- .../v1.0.0/components/CloneSet.json | 6 +- .../v1.0.0/components/ConsulResolver.json | 6 +- .../components/ContainerRecreateRequest.json | 6 +- .../v1.0.0/components/DaemonSet.json | 6 +- .../v1.0.0/components/DevPortal.json | 6 +- .../v1.0.0/components/HelmRelease.json | 6 +- .../v1.0.0/components/Host.json | 6 +- .../v1.0.0/components/ImagePullJob.json | 6 +- .../KubernetesEndpointResolver.json | 6 +- .../components/KubernetesServiceResolver.json | 6 +- .../v1.0.0/components/Listener.json | 6 +- .../v1.0.0/components/LogService.json | 6 +- .../v1.0.0/components/Mapping.json | 6 +- .../v1.0.0/components/MetricGroup.json | 6 +- .../v1.0.0/components/Module.json | 6 +- .../v1.0.0/components/NodeImage.json | 6 +- .../v1.0.0/components/PodMonitor.json | 2 - .../components/PodUnavailableBudget.json | 6 +- .../v1.0.0/components/Probe.json | 2 - .../v1.0.0/components/Prometheus.json | 2 - .../components/PrometheusK8sCluster.json | 6 +- .../v1.0.0/components/PrometheusRule.json | 2 - .../v1.0.0/components/RateLimitService.json | 6 +- .../components/ResourceDistribution.json | 6 +- .../v1.0.0/components/ServiceMonitor.json | 2 - .../v1.0.0/components/SidecarSet.json | 6 +- .../v1.0.0/components/StatefulSet.json | 6 +- .../v1.0.0/components/TCPMapping.json | 6 +- .../v1.0.0/components/TLSContext.json | 6 +- .../v1.0.0/components/ThanosRuler.json | 2 - .../v1.0.0/components/TracingService.json | 6 +- .../v1.0.0/components/UnitedDeployment.json | 6 +- .../v1.0.0/components/WorkloadSpread.json | 6 +- .../v1.0.0/components/ClusterInstance.json | 6 +- .../v1.0.0/components/ClusterTemplate.json | 6 +- .../0.9.0/v1.0.0/components/Instance.json | 6 +- .../0.9.0/v1.0.0/components/Template.json | 6 +- .../0.9.0/v1.0.0/components/User.json | 6 +- .../0.9.0/v1.0.0/components/Workspace.json | 6 +- .../2.1.2/v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../2.1.2/v1.0.0/components/PodMonitor.json | 2 - .../2.1.2/v1.0.0/components/Probe.json | 2 - .../2.1.2/v1.0.0/components/Prometheus.json | 2 - .../v1.0.0/components/PrometheusRule.json | 2 - .../v1.0.0/components/ServiceMonitor.json | 2 - .../2.1.2/v1.0.0/components/ThanosRuler.json | 2 - .../components/CouchbaseAutoscaler.json | 66 +++++++++++++++++++ .../v1.0.0/components/CouchbaseBackup.json | 66 +++++++++++++++++++ .../components/CouchbaseBackupRestore.json | 66 +++++++++++++++++++ .../v1.0.0/components/CouchbaseBucket.json | 66 +++++++++++++++++++ .../v1.0.0/components/CouchbaseCluster.json | 66 +++++++++++++++++++ .../components/CouchbaseCollection.json | 66 +++++++++++++++++++ .../components/CouchbaseCollectionGroup.json | 66 +++++++++++++++++++ .../components/CouchbaseEphemeralBucket.json | 66 +++++++++++++++++++ .../v1.0.0/components/CouchbaseGroup.json | 66 +++++++++++++++++++ .../components/CouchbaseMemcachedBucket.json | 66 +++++++++++++++++++ .../CouchbaseMigrationReplication.json | 66 +++++++++++++++++++ .../components/CouchbaseReplication.json | 66 +++++++++++++++++++ .../components/CouchbaseRoleBinding.json | 66 +++++++++++++++++++ .../v1.0.0/components/CouchbaseScope.json | 66 +++++++++++++++++++ .../components/CouchbaseScopeGroup.json | 66 +++++++++++++++++++ .../v1.0.0/components/CouchbaseUser.json | 66 +++++++++++++++++++ .../2.64.0/v1.0.0/model.json | 37 +++++++++++ .../v1.0.0/components/AddressscopeV2.json | 4 +- .../v0.3.0/v1.0.0/components/AggregateV2.json | 4 +- .../components/ApplicationCredentialV3.json | 4 +- .../v0.3.0/v1.0.0/components/ClusterV1.json | 4 +- .../v1.0.0/components/ClustertemplateV1.json | 4 +- .../v1.0.0/components/ConfigurationV1.json | 4 +- .../v0.3.0/v1.0.0/components/ContainerV1.json | 4 +- .../v0.3.0/v1.0.0/components/DatabaseV1.json | 4 +- .../v1.0.0/components/EC2CredentialV3.json | 4 +- .../v1.0.0/components/EndpointGroupV2.json | 4 +- .../v0.3.0/v1.0.0/components/EndpointV3.json | 4 +- .../v1.0.0/components/FlavorAccessV2.json | 4 +- .../v0.3.0/v1.0.0/components/FlavorV2.json | 4 +- .../components/FloatingipAssociateV2.json | 4 +- .../v1.0.0/components/FloatingipV2.json | 4 +- .../v0.3.0/v1.0.0/components/GroupV2.json | 4 +- .../v0.3.0/v1.0.0/components/GroupV3.json | 4 +- .../v0.3.0/v1.0.0/components/IkePolicyV2.json | 4 +- .../components/ImageAccessAcceptV2.json | 4 +- .../v1.0.0/components/ImageAccessV2.json | 4 +- .../v0.3.0/v1.0.0/components/ImageV2.json | 4 +- .../components/InheritRoleAssignmentV3.json | 4 +- .../v0.3.0/v1.0.0/components/InstanceV1.json | 4 +- .../v0.3.0/v1.0.0/components/InstanceV2.json | 4 +- .../v1.0.0/components/InterfaceAttachV2.json | 4 +- .../v1.0.0/components/IpsecPolicyV2.json | 4 +- .../v0.3.0/v1.0.0/components/KeypairV2.json | 4 +- .../v0.3.0/v1.0.0/components/L7PolicyV2.json | 4 +- .../v0.3.0/v1.0.0/components/L7RuleV2.json | 4 +- .../v0.3.0/v1.0.0/components/ListenerV2.json | 4 +- .../v1.0.0/components/LoadbalancerV2.json | 4 +- .../v0.3.0/v1.0.0/components/MemberV2.json | 4 +- .../v0.3.0/v1.0.0/components/MembersV2.json | 4 +- .../v0.3.0/v1.0.0/components/MonitorV2.json | 4 +- .../v0.3.0/v1.0.0/components/NetworkV2.json | 4 +- .../v0.3.0/v1.0.0/components/NodegroupV1.json | 4 +- .../v0.3.0/v1.0.0/components/ObjectV1.json | 4 +- .../v0.3.0/v1.0.0/components/OrderV1.json | 4 +- .../v0.3.0/v1.0.0/components/PolicyV2.json | 4 +- .../v0.3.0/v1.0.0/components/PoolV2.json | 4 +- .../components/PortSecgroupAssociateV2.json | 4 +- .../v0.3.0/v1.0.0/components/PortV2.json | 4 +- .../v1.0.0/components/PortforwardingV2.json | 4 +- .../v0.3.0/v1.0.0/components/ProjectV3.json | 4 +- .../v1.0.0/components/ProviderConfig.json | 4 +- .../components/ProviderConfigUsage.json | 4 +- .../v1.0.0/components/QosAssociationV3.json | 4 +- .../components/QosBandwidthLimitRuleV2.json | 4 +- .../components/QosDscpMarkingRuleV2.json | 4 +- .../components/QosMinimumBandwidthRuleV2.json | 4 +- .../v0.3.0/v1.0.0/components/QosPolicyV2.json | 4 +- .../v0.3.0/v1.0.0/components/QosV3.json | 4 +- .../v0.3.0/v1.0.0/components/QuotaV2.json | 4 +- .../v0.3.0/v1.0.0/components/QuotasetV2.json | 4 +- .../v0.3.0/v1.0.0/components/QuotasetV3.json | 4 +- .../v1.0.0/components/RbacPolicyV2.json | 4 +- .../v0.3.0/v1.0.0/components/RecordsetV2.json | 4 +- .../v1.0.0/components/RoleAssignmentV3.json | 4 +- .../v0.3.0/v1.0.0/components/RoleV3.json | 4 +- .../v1.0.0/components/RouterInterfaceV2.json | 4 +- .../v1.0.0/components/RouterRouteV2.json | 4 +- .../v0.3.0/v1.0.0/components/RouterV2.json | 4 +- .../v0.3.0/v1.0.0/components/RuleV2.json | 4 +- .../v1.0.0/components/SecgroupRuleV2.json | 4 +- .../v0.3.0/v1.0.0/components/SecgroupV2.json | 4 +- .../v0.3.0/v1.0.0/components/SecretV1.json | 4 +- .../v1.0.0/components/SecurityserviceV2.json | 4 +- .../v1.0.0/components/ServergroupV2.json | 4 +- .../v0.3.0/v1.0.0/components/ServiceV2.json | 4 +- .../v0.3.0/v1.0.0/components/ServiceV3.json | 4 +- .../v1.0.0/components/ShareAccessV2.json | 4 +- .../v0.3.0/v1.0.0/components/ShareV2.json | 4 +- .../v1.0.0/components/SharenetworkV2.json | 4 +- .../v1.0.0/components/SiteConnectionV2.json | 4 +- .../v0.3.0/v1.0.0/components/StackV1.json | 4 +- .../v0.3.0/v1.0.0/components/StoreConfig.json | 4 +- .../v1.0.0/components/SubnetRouteV2.json | 4 +- .../v0.3.0/v1.0.0/components/SubnetV2.json | 4 +- .../v1.0.0/components/SubnetpoolV2.json | 4 +- .../v0.3.0/v1.0.0/components/TempurlV1.json | 4 +- .../v1.0.0/components/TransferAcceptV2.json | 4 +- .../v1.0.0/components/TransferRequestV2.json | 4 +- .../v0.3.0/v1.0.0/components/TrunkV2.json | 4 +- .../v1.0.0/components/UserMembershipV3.json | 4 +- .../v0.3.0/v1.0.0/components/UserV1.json | 4 +- .../v0.3.0/v1.0.0/components/UserV3.json | 4 +- .../v1.0.0/components/VolumeAttachV2.json | 4 +- .../v1.0.0/components/VolumeAttachV3.json | 4 +- .../v1.0.0/components/VolumeTypeAccessV3.json | 4 +- .../v1.0.0/components/VolumeTypeV3.json | 4 +- .../v0.3.0/v1.0.0/components/VolumeV3.json | 4 +- .../v0.3.0/v1.0.0/components/ZoneV2.json | 4 +- .../CompositeResourceDefinition.json | 4 +- .../v1.0.0/components/Composition.json | 4 +- .../v1.0.0/components/Configuration.json | 4 +- .../components/ConfigurationRevision.json | 4 +- .../components/KubernetesApplication.json | 4 +- .../KubernetesApplicationResource.json | 4 +- .../v1.0.0/components/KubernetesTarget.json | 4 +- .../v1.0.0/components/Provider.json | 4 +- .../v1.0.0/components/ProviderRevision.json | 4 +- .../components/SecretProviderClass.json | 6 +- .../SecretProviderClassPodStatus.json | 6 +- .../1.13.4/v1.0.0/components/Component.json | 4 +- .../v1.0.0/components/Configuration.json | 4 +- .../v1.0.0/components/HTTPEndpoint.json | 4 +- .../1.13.4/v1.0.0/components/Resiliency.json | 4 +- .../v1.0.0/components/Subscription.json | 4 +- .../v1.0.0/components/DaskCluster.json | 2 - .../v1.0.0/components/IngressRoute.json | 2 - .../v1.0.0/components/IngressRouteTCP.json | 2 - .../v1.0.0/components/IngressRouteUDP.json | 2 - .../v1.0.0/components/Middleware.json | 2 - .../v1.0.0/components/MiddlewareTCP.json | 2 - .../v1.0.0/components/ServersTransport.json | 2 - .../2024.1.0/v1.0.0/components/TLSOption.json | 2 - .../2024.1.0/v1.0.0/components/TLSStore.json | 2 - .../v1.0.0/components/TraefikService.json | 2 - .../v1.0.0/components/DaskAutoscaler.json | 2 - .../v1.0.0/components/DaskCluster.json | 2 - .../2024.5.0/v1.0.0/components/DaskJob.json | 2 - .../v1.0.0/components/DaskWorkerGroup.json | 2 - .../v1.0.0/components/DaskCluster.json | 6 +- .../v1.0.0/components/IngressRoute.json | 2 - .../v1.0.0/components/IngressRouteTCP.json | 2 - .../v1.0.0/components/IngressRouteUDP.json | 2 - .../v1.0.0/components/Middleware.json | 2 - .../v1.0.0/components/MiddlewareTCP.json | 2 - .../v1.0.0/components/ServersTransport.json | 2 - .../2024.1.1/v1.0.0/components/TLSOption.json | 2 - .../2024.1.1/v1.0.0/components/TLSStore.json | 2 - .../v1.0.0/components/TraefikService.json | 2 - .../0.3.2/v1.0.0/components/Dast.json | 6 +- .../datadog-operator/1.7.1/v1.0.0/model.json | 37 +++++++++++ .../0.0.1/v1.0.0/components/Alertmanager.json | 8 +-- .../0.0.1/v1.0.0/components/PodMonitor.json | 8 +-- .../0.0.1/v1.0.0/components/Prometheus.json | 8 +-- .../v1.0.0/components/PrometheusRule.json | 8 +-- .../v1.0.0/components/ServiceMonitor.json | 8 +-- .../0.0.1/v1.0.0/components/ThanosRuler.json | 8 +-- .../0.0.3/v1.0.0/components/Alertmanager.json | 8 +-- .../0.0.3/v1.0.0/components/PodMonitor.json | 8 +-- .../0.0.3/v1.0.0/components/Prometheus.json | 8 +-- .../v1.0.0/components/PrometheusRule.json | 8 +-- .../v1.0.0/components/ServiceMonitor.json | 8 +-- .../0.0.3/v1.0.0/components/ThanosRuler.json | 8 +-- .../components/ClusterServingRuntime.json | 8 +-- .../components/ClusterStorageContainer.json | 2 - .../v1.0.0/components/InferenceGraph.json | 6 +- .../v1.0.0/components/InferenceService.json | 8 +-- .../v1.0.0/components/ServingRuntime.json | 8 +-- .../v1.0.0/components/TrainedModel.json | 8 +-- .../0.3.3/v1.0.0/components/Certificate.json | 6 +- .../v1.0.0/components/CertificateRequest.json | 6 +- .../0.3.3/v1.0.0/components/Challenge.json | 6 +- .../v1.0.0/components/ClusterIssuer.json | 6 +- .../0.3.3/v1.0.0/components/Issuer.json | 6 +- .../0.3.3/v1.0.0/components/Order.json | 6 +- .../0.22.71/v1.0.0/components/Installer.json | 6 +- .../0.3.0/v1.0.0/components/Ditto.json | 6 +- .../3.5.0/v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../3.5.0/v1.0.0/components/GrafanaAgent.json | 2 - .../3.5.0/v1.0.0/components/Integration.json | 2 - .../3.5.0/v1.0.0/components/LogsInstance.json | 2 - .../v1.0.0/components/MetricsInstance.json | 2 - .../3.5.0/v1.0.0/components/PodLogs.json | 2 - .../3.5.0/v1.0.0/components/PodMonitor.json | 2 - .../3.5.0/v1.0.0/components/Probe.json | 2 - .../3.5.0/v1.0.0/components/Prometheus.json | 2 - .../v1.0.0/components/PrometheusAgent.json | 2 - .../v1.0.0/components/PrometheusRule.json | 2 - .../3.5.0/v1.0.0/components/ScrapeConfig.json | 2 - .../v1.0.0/components/ServiceMonitor.json | 2 - .../3.5.0/v1.0.0/components/ThanosRuler.json | 2 - .../0.0.2/v1.0.0/components/Echo.json | 2 - .../v1.0.0/components/ScheduledEcho.json | 2 - .../7.86.0/v1.0.0/components/CheCluster.json | 6 +- .../v1.0.0/components/ArgoApplication.json | 6 +- .../v1.0.0/components/EDPComponent.json | 6 +- .../3.8.1/v1.0.0/components/CDPipeline.json | 2 - .../v1.0.0/components/CDStageDeploy.json | 2 - .../3.8.1/v1.0.0/components/Codebase.json | 2 - .../v1.0.0/components/CodebaseBranch.json | 2 - .../components/CodebaseImageStream.json | 2 - .../3.8.1/v1.0.0/components/EDPComponent.json | 2 - .../3.8.1/v1.0.0/components/Gerrit.json | 2 - .../3.8.1/v1.0.0/components/GerritGroup.json | 2 - .../v1.0.0/components/GerritGroupMember.json | 2 - .../v1.0.0/components/GerritMergeRequest.json | 2 - .../v1.0.0/components/GerritProject.json | 2 - .../components/GerritProjectAccess.json | 2 - .../components/GerritReplicationConfig.json | 2 - .../3.8.1/v1.0.0/components/GitServer.json | 2 - .../v1.0.0/components/JiraIssueMetadata.json | 2 - .../3.8.1/v1.0.0/components/JiraServer.json | 2 - .../3.8.1/v1.0.0/components/QuickLink.json | 10 ++- .../3.8.1/v1.0.0/components/Stage.json | 2 - .../3.8.1/v1.0.0/components/Template.json | 2 - .../4.3.0/v1.0.0/components/Kafka.json | 2 - .../4.3.0/v1.0.0/components/KafkaBridge.json | 2 - .../4.3.0/v1.0.0/components/KafkaConnect.json | 2 - .../v1.0.0/components/KafkaConnector.json | 2 - .../v1.0.0/components/KafkaMirrorMaker.json | 2 - .../v1.0.0/components/KafkaMirrorMaker2.json | 2 - .../v1.0.0/components/KafkaNodePool.json | 2 - .../v1.0.0/components/KafkaRebalance.json | 2 - .../4.3.0/v1.0.0/components/KafkaTopic.json | 2 - .../4.3.0/v1.0.0/components/KafkaUser.json | 2 - .../v1.0.0/components/StrimziPodSet.json | 2 - .../4.3.0/v1.0.0/components/Kafka.json | 2 - .../4.3.0/v1.0.0/components/KafkaBridge.json | 2 - .../4.3.0/v1.0.0/components/KafkaConnect.json | 2 - .../v1.0.0/components/KafkaConnector.json | 2 - .../v1.0.0/components/KafkaMirrorMaker.json | 2 - .../v1.0.0/components/KafkaMirrorMaker2.json | 2 - .../v1.0.0/components/KafkaNodePool.json | 2 - .../v1.0.0/components/KafkaRebalance.json | 2 - .../4.3.0/v1.0.0/components/KafkaTopic.json | 2 - .../4.3.0/v1.0.0/components/KafkaUser.json | 2 - .../v1.0.0/components/StrimziPodSet.json | 2 - .../4.3.0/v1.0.0/components/Kafka.json | 2 - .../4.3.0/v1.0.0/components/KafkaBridge.json | 2 - .../4.3.0/v1.0.0/components/KafkaConnect.json | 2 - .../v1.0.0/components/KafkaConnector.json | 2 - .../v1.0.0/components/KafkaMirrorMaker.json | 2 - .../v1.0.0/components/KafkaMirrorMaker2.json | 2 - .../v1.0.0/components/KafkaNodePool.json | 2 - .../v1.0.0/components/KafkaRebalance.json | 2 - .../4.3.0/v1.0.0/components/KafkaTopic.json | 2 - .../4.3.0/v1.0.0/components/KafkaUser.json | 2 - .../v1.0.0/components/StrimziPodSet.json | 2 - .../1.25.0/v1.0.0/components/MongoDB.json | 2 - .../v1.0.0/components/MongoDBMulti.json | 12 ++-- .../components/MongoDBMultiCluster.json | 12 ++-- .../v1.0.0/components/MongoDBOpsManager.json | 12 ++-- .../1.25.0/v1.0.0/components/MongoDBUser.json | 12 ++-- .../epinio/1.11.1/v1.0.0/components/App.json | 12 ++-- .../1.11.1/v1.0.0/components/AppChart.json | 12 ++-- .../1.11.1/v1.0.0/components/Service.json | 12 ++-- .../0.1.6/v1.0.0/components/EtcdBackup.json | 4 +- .../v1.0.0/components/EtcdBackupSchedule.json | 4 +- .../0.1.6/v1.0.0/components/EtcdCluster.json | 4 +- .../0.1.6/v1.0.0/components/EtcdPeer.json | 4 +- .../0.1.6/v1.0.0/components/EtcdRestore.json | 4 +- .../14.6.301/v1.0.0/components/AWSChaos.json | 6 +- .../v1.0.0/components/AzureChaos.json | 6 +- .../14.6.301/v1.0.0/components/DNSChaos.json | 6 +- .../14.6.301/v1.0.0/components/GCPChaos.json | 6 +- .../14.6.301/v1.0.0/components/HTTPChaos.json | 6 +- .../14.6.301/v1.0.0/components/IOChaos.json | 6 +- .../14.6.301/v1.0.0/components/JVMChaos.json | 6 +- .../v1.0.0/components/KernelChaos.json | 6 +- .../v1.0.0/components/NetworkChaos.json | 6 +- .../v1.0.0/components/PhysicalMachine.json | 6 +- .../components/PhysicalMachineChaos.json | 6 +- .../14.6.301/v1.0.0/components/PodChaos.json | 6 +- .../v1.0.0/components/PodHttpChaos.json | 6 +- .../v1.0.0/components/PodIOChaos.json | 6 +- .../v1.0.0/components/PodNetworkChaos.json | 6 +- .../14.6.301/v1.0.0/components/Schedule.json | 6 +- .../v1.0.0/components/StatusCheck.json | 6 +- .../v1.0.0/components/StressChaos.json | 6 +- .../14.6.301/v1.0.0/components/TimeChaos.json | 6 +- .../14.6.301/v1.0.0/components/Workflow.json | 6 +- .../v1.0.0/components/WorkflowNode.json | 6 +- .../0.3.1/v1.0.0/components/IngressRoute.json | 2 - .../v1.0.0/components/IngressRouteTCP.json | 2 - .../v1.0.0/components/IngressRouteUDP.json | 2 - .../0.3.1/v1.0.0/components/Middleware.json | 2 - .../v1.0.0/components/MiddlewareTCP.json | 2 - .../v1.0.0/components/ServersTransport.json | 2 - .../0.3.1/v1.0.0/components/TLSOption.json | 2 - .../0.3.1/v1.0.0/components/TLSStore.json | 2 - .../v1.0.0/components/TraefikService.json | 2 - .../v1.0.0/components/AlertProvider.json | 2 - .../1.37.0/v1.0.0/components/Canary.json | 2 - .../v1.0.0/components/MetricTemplate.json | 2 - .../1.7.0/v1.0.0/components/ApiInstance.json | 2 - .../v1.0.0/components/Configuration.json | 2 - .../1.7.0/v1.0.0/components/Extension.json | 2 - .../v1.0.0/components/PolicyBinding.json | 2 - .../1.7.0/v1.0.0/components/Service.json | 2 - .../v1.0.0/components/ClusterFilter.json | 4 +- .../components/ClusterFluentBitConfig.json | 4 +- .../components/ClusterFluentdConfig.json | 4 +- .../0.1.0/v1.0.0/components/ClusterInput.json | 4 +- .../v1.0.0/components/ClusterOutput.json | 4 +- .../v1.0.0/components/ClusterParser.json | 4 +- .../0.1.0/v1.0.0/components/Filter.json | 4 +- .../0.1.0/v1.0.0/components/FluentBit.json | 4 +- .../0.1.0/v1.0.0/components/Fluentd.json | 4 +- .../v1.0.0/components/FluentdConfig.json | 4 +- .../0.1.0/v1.0.0/components/Output.json | 4 +- .../v1.0.0/components/FluentdConfig.json | 4 +- .../v1.0.0/components/DaskAutoscaler.json | 6 +- .../v1.0.0/components/DaskCluster.json | 6 +- .../1.12.1-rc0/v1.0.0/components/DaskJob.json | 6 +- .../v1.0.0/components/DaskWorkerGroup.json | 6 +- .../components/ScheduledSparkApplication.json | 2 - .../v1.0.0/components/SparkApplication.json | 2 - .../components/ScheduledSparkApplication.json | 2 - .../v1.0.0/components/SparkApplication.json | 2 - .../v1.0.0/components/DaskAutoscaler.json | 2 - .../v1.0.0/components/DaskCluster.json | 2 - .../1.12.1-rc0/v1.0.0/components/DaskJob.json | 2 - .../v1.0.0/components/DaskWorkerGroup.json | 2 - .../components/ScheduledSparkApplication.json | 2 - .../v1.0.0/components/SparkApplication.json | 2 - .../0.1.4/v1.0.0/components/Alertmanager.json | 2 - .../v1.0.0/components/AlertmanagerConfig.json | 2 - .../0.1.4/v1.0.0/components/Grafana.json | 2 - .../v1.0.0/components/GrafanaDashboard.json | 2 - .../v1.0.0/components/GrafanaDataSource.json | 2 - .../GrafanaNotificationChannel.json | 2 - .../0.1.4/v1.0.0/components/PodMonitor.json | 2 - .../0.1.4/v1.0.0/components/Probe.json | 2 - .../0.1.4/v1.0.0/components/Prometheus.json | 2 - .../v1.0.0/components/PrometheusRule.json | 2 - .../v1.0.0/components/ServiceMonitor.json | 2 - .../0.1.4/v1.0.0/components/ThanosRuler.json | 2 - .../v1.0.0/components/ForecastleApp.json | 2 - .../8.0.1/v1.0.0/components/IngressRoute.json | 2 - .../v1.0.0/components/IngressRouteTCP.json | 2 - .../v1.0.0/components/IngressRouteUDP.json | 2 - .../8.0.1/v1.0.0/components/Middleware.json | 2 - .../v1.0.0/components/MiddlewareTCP.json | 2 - .../v1.0.0/components/ServersTransport.json | 2 - .../components/ServersTransportTCP.json | 10 ++- .../8.0.1/v1.0.0/components/TLSOption.json | 2 - .../8.0.1/v1.0.0/components/TLSStore.json | 2 - .../v1.0.0/components/TraefikService.json | 2 - .../components/GafaelfawrServiceToken.json | 2 - .../5.14.0/v1.0.0/components/Binding.json | 2 - .../5.14.0/v1.0.0/components/Exchange.json | 2 - .../5.14.0/v1.0.0/components/Federation.json | 2 - .../components/OperatorConfiguration.json | 2 - .../5.14.0/v1.0.0/components/Permission.json | 2 - .../5.14.0/v1.0.0/components/Policy.json | 2 - .../v1.0.0/components/PostgresTeam.json | 2 - .../5.14.0/v1.0.0/components/Queue.json | 2 - .../v1.0.0/components/RabbitmqCluster.json | 2 - .../v1.0.0/components/SchemaReplication.json | 2 - .../5.14.0/v1.0.0/components/Shovel.json | 2 - .../5.14.0/v1.0.0/components/SuperStream.json | 2 - .../galaxy/5.14.0/v1.0.0/components/User.json | 2 - .../5.14.0/v1.0.0/components/Vhost.json | 2 - .../5.14.0/v1.0.0/components/postgresql.json | 2 - .../v1.0.0/components/OAuth2Client.json | 2 - .../0.33.105/v1.0.0/components/Rule.json | 2 - .../v1.0.0/components/Assign.json | 4 +- .../v1.0.0/components/AssignImage.json | 4 +- .../v1.0.0/components/AssignMetadata.json | 4 +- .../v1.0.0/components/Config.json | 6 +- .../components/ConstraintPodStatus.json | 6 +- .../v1.0.0/components/ConstraintTemplate.json | 4 +- .../ConstraintTemplatePodStatus.json | 6 +- .../v1.0.0/components/ExpansionTemplate.json | 4 +- .../ExpansionTemplatePodStatus.json | 4 +- .../v1.0.0/components/ModifySet.json | 4 +- .../v1.0.0/components/MutatorPodStatus.json | 4 +- .../v1.0.0/components/Provider.json | 4 +- .../v1.0.0/components/SyncSet.json | 6 +- .../v1.0.0/components/SnapshotGroup.json | 4 +- .../2.20.1/v1.0.0/components/Gerrit.json | 6 +- .../2.20.1/v1.0.0/components/GerritGroup.json | 6 +- .../v1.0.0/components/GerritGroupMember.json | 6 +- .../v1.0.0/components/GerritMergeRequest.json | 6 +- .../v1.0.0/components/GerritProject.json | 6 +- .../components/GerritProjectAccess.json | 6 +- .../components/GerritReplicationConfig.json | 6 +- .../v1.0.0/components/GithubActionRunner.json | 4 +- .../HorizontalRunnerAutoscaler.json | 4 +- .../0.1.2/v1.0.0/components/Runner.json | 4 +- .../v1.0.0/components/RunnerDeployment.json | 4 +- .../v1.0.0/components/RunnerReplicaSet.json | 4 +- .../0.1.2/v1.0.0/components/RunnerSet.json | 4 +- .../1.6.0/v1.0.0/components/Runner.json | 6 +- .../8.0.1/v1.0.0/components/Backend.json | 6 +- .../8.0.1/v1.0.0/components/Defaults.json | 6 +- .../8.0.1/v1.0.0/components/Global.json | 6 +- .../8.0.1/v1.0.0/components/IngressRoute.json | 8 +-- .../v1.0.0/components/IngressRouteTCP.json | 8 +-- .../v1.0.0/components/IngressRouteUDP.json | 8 +-- .../8.0.1/v1.0.0/components/Middleware.json | 8 +-- .../v1.0.0/components/MiddlewareTCP.json | 8 +-- .../v1.0.0/components/ServersTransport.json | 8 +-- .../8.0.1/v1.0.0/components/TLSOption.json | 8 +-- .../8.0.1/v1.0.0/components/TLSStore.json | 8 +-- .../v1.0.0/components/TraefikService.json | 8 +-- .../v1.0.0/components/ApiDefinition.json | 2 - .../0.13.1/v1.0.0/components/ApiResource.json | 2 - .../0.13.1/v1.0.0/components/Application.json | 2 - .../v1.0.0/components/ManagementContext.json | 2 - .../v1.0.0/components/AccessLogRecord.json | 2 - .../v1.0.0/components/AccessPolicy.json | 2 - .../components/CertificateVerification.json | 2 - .../v1.0.0/components/Dashboard.json | 2 - .../v1.0.0/components/Destination.json | 2 - .../v1.0.0/components/IstioInstallation.json | 2 - .../v1.0.0/components/KubernetesCluster.json | 2 - .../1.2.0-beta1/v1.0.0/components/Mesh.json | 2 - .../components/RateLimitClientConfig.json | 2 - .../components/RateLimitServerConfig.json | 2 - .../1.2.0-beta1/v1.0.0/components/Role.json | 2 - .../v1.0.0/components/RoleBinding.json | 2 - .../v1.0.0/components/RouteTable.json | 2 - .../v1.0.0/components/ServiceDependency.json | 2 - .../v1.0.0/components/Settings.json | 2 - .../v1.0.0/components/TrafficPolicy.json | 2 - .../v1.0.0/components/VirtualDestination.json | 2 - .../v1.0.0/components/VirtualGateway.json | 2 - .../v1.0.0/components/VirtualHost.json | 2 - .../v1.0.0/components/VirtualMesh.json | 2 - .../v1.0.0/components/WasmDeployment.json | 2 - .../v1.0.0/components/Workload.json | 2 - .../v1.0.0/components/AuthConfig.json | 2 - .../1.17.0-rc1/v1.0.0/components/Gateway.json | 2 - .../v1.0.0/components/GatewayParameters.json | 2 - .../v1.0.0/components/GraphQLApi.json | 2 - .../v1.0.0/components/HttpListenerOption.json | 2 - .../v1.0.0/components/ListenerOption.json | 2 - .../components/MatchableHttpGateway.json | 2 - .../components/MatchableTcpGateway.json | 6 +- .../1.17.0-rc1/v1.0.0/components/Proxy.json | 2 - .../v1.0.0/components/RateLimitConfig.json | 2 - .../v1.0.0/components/RouteOption.json | 2 - .../v1.0.0/components/RouteTable.json | 2 - .../v1.0.0/components/Settings.json | 2 - .../v1.0.0/components/Upstream.json | 2 - .../v1.0.0/components/UpstreamGroup.json | 2 - .../v1.0.0/components/VirtualHostOption.json | 2 - .../v1.0.0/components/VirtualService.json | 2 - .../components/VerticalPodAutoscaler.json | 6 +- .../VerticalPodAutoscalerCheckpoint.json | 6 +- .../3.10.0/v1.0.0/components/KopfPeering.json | 2 - .../v1.0.0/components/Organization.json | 2 - .../0.8.0/v1.0.0/components/IngressHTTP.json | 2 - .../v1.0.0/components/ClusterPolicy.json | 2 - .../v1.0.0/components/NVIDIADriver.json | 2 - .../24.3.0/v1.0.0/components/NodeFeature.json | 2 - .../v1.0.0/components/NodeFeatureRule.json | 2 - .../4.4.5/v1.0.0/components/Grafana.json | 66 +++++++++++++++++++ .../components/GrafanaAlertRuleGroup.json | 66 +++++++++++++++++++ .../components/GrafanaContactPoint.json | 66 +++++++++++++++++++ .../v1.0.0/components/GrafanaDashboard.json | 66 +++++++++++++++++++ .../v1.0.0/components/GrafanaDatasource.json | 66 +++++++++++++++++++ .../v1.0.0/components/GrafanaFolder.json | 66 +++++++++++++++++++ .../grafana-operator/4.4.5/v1.0.0/model.json | 37 +++++++++++ .../v1.0.0/components/GrafanaDashboard.json | 6 +- .../1.6.3/v1.0.0/components/Instance.json | 6 +- .../components/InstanceChartRepository.json | 6 +- .../1.6.3/v1.0.0/components/Project.json | 6 +- .../1.6.3/v1.0.0/components/Registry.json | 6 +- .../1.6.3/v1.0.0/components/Replication.json | 6 +- .../1.6.3/v1.0.0/components/User.json | 6 +- .../0.1.4/v1.0.0/components/Hawkbit.json | 2 - .../v1.0.0/components/VaultBinding.json | 66 +++++++++++++++++++ .../components/VaultCertificateAuthority.json | 66 +++++++++++++++++++ .../components/VaultCertificateRole.json | 66 +++++++++++++++++++ .../v1.0.0/components/VaultClientConfig.json | 66 +++++++++++++++++++ .../v1.0.0/components/VaultKVSecret.json | 66 +++++++++++++++++++ .../components/VaultKVSecretEngine.json | 66 +++++++++++++++++++ .../v1.0.0/components/VaultSyncSecret.json | 66 +++++++++++++++++++ .../v1.0.0/components/VaultTransitEngine.json | 66 +++++++++++++++++++ .../v1.0.0/components/VaultTransitKey.json | 66 +++++++++++++++++++ .../meshmodel/heist/1.1.199/v1.0.0/model.json | 37 +++++++++++ .../v1.0.0/components/HNCConfiguration.json | 2 - .../components/HierarchyConfiguration.json | 2 - .../v1.0.0/components/SubnamespaceAnchor.json | 2 - .../v1.0.0/components/Alertmanager.json | 6 +- .../v1.0.0/components/AlertmanagerConfig.json | 6 +- .../v1.0.0/components/HiveMQCluster.json | 2 - .../0.11.38/v1.0.0/components/PodMonitor.json | 6 +- .../0.11.38/v1.0.0/components/Probe.json | 6 +- .../0.11.38/v1.0.0/components/Prometheus.json | 6 +- .../v1.0.0/components/PrometheusRule.json | 6 +- .../v1.0.0/components/ServiceMonitor.json | 6 +- .../v1.0.0/components/ThanosRuler.json | 6 +- .../v1.0.0/components/Alertmanager.json | 6 +- .../v1.0.0/components/AlertmanagerConfig.json | 6 +- .../0.2.35/v1.0.0/components/PodMonitor.json | 6 +- .../0.2.35/v1.0.0/components/Probe.json | 6 +- .../0.2.35/v1.0.0/components/Prometheus.json | 6 +- .../v1.0.0/components/PrometheusRule.json | 6 +- .../v1.0.0/components/ServiceMonitor.json | 6 +- .../0.2.35/v1.0.0/components/ThanosRuler.json | 6 +- .../v1.0.0/components/APIGatewayAPI.json | 6 +- .../components/APIGatewayAPIConfig.json | 6 +- .../v1.0.0/components/APIGatewayGateway.json | 6 +- .../v1.0.0/components/APIKeysKey.json | 6 +- .../AccessContextManagerAccessLevel.json | 6 +- ...essContextManagerAccessLevelCondition.json | 6 +- .../AccessContextManagerAccessPolicy.json | 6 +- ...essContextManagerGCPUserAccessBinding.json | 6 +- .../AccessContextManagerServicePerimeter.json | 6 +- ...ontextManagerServicePerimeterResource.json | 6 +- .../v1.0.0/components/AlloyDBBackup.json | 6 +- .../v1.0.0/components/AlloyDBCluster.json | 6 +- .../v1.0.0/components/AlloyDBInstance.json | 6 +- .../v1.0.0/components/AlloyDBUser.json | 6 +- .../v1.0.0/components/ApigeeAddonsConfig.json | 6 +- .../components/ApigeeEndpointAttachment.json | 6 +- .../v1.0.0/components/ApigeeEnvgroup.json | 6 +- .../components/ApigeeEnvgroupAttachment.json | 6 +- .../v1.0.0/components/ApigeeEnvironment.json | 6 +- .../v1.0.0/components/ApigeeInstance.json | 6 +- .../components/ApigeeInstanceAttachment.json | 6 +- .../v1.0.0/components/ApigeeNATAddress.json | 6 +- .../v1.0.0/components/ApigeeOrganization.json | 6 +- .../components/ApigeeSyncAuthorization.json | 6 +- .../components/AppEngineDomainMapping.json | 6 +- .../components/AppEngineFirewallRule.json | 6 +- .../AppEngineFlexibleAppVersion.json | 6 +- .../AppEngineServiceSplitTraffic.json | 6 +- .../AppEngineStandardAppVersion.json | 6 +- .../ArtifactRegistryRepository.json | 6 +- .../components/BeyondCorpAppConnection.json | 6 +- .../components/BeyondCorpAppConnector.json | 6 +- .../components/BeyondCorpAppGateway.json | 6 +- .../BigQueryAnalyticsHubDataExchange.json | 6 +- .../BigQueryAnalyticsHubListing.json | 6 +- .../BigQueryConnectionConnection.json | 6 +- .../BigQueryDataPolicyDataPolicy.json | 6 +- .../BigQueryDataTransferConfig.json | 6 +- .../v1.0.0/components/BigQueryDataset.json | 6 +- .../components/BigQueryDatasetAccess.json | 6 +- .../v1.0.0/components/BigQueryJob.json | 6 +- ...BigQueryReservationCapacityCommitment.json | 6 +- .../BigQueryReservationReservation.json | 6 +- .../v1.0.0/components/BigQueryRoutine.json | 6 +- .../v1.0.0/components/BigQueryTable.json | 6 +- .../v1.0.0/components/BigtableAppProfile.json | 6 +- .../v1.0.0/components/BigtableGCPolicy.json | 6 +- .../v1.0.0/components/BigtableInstance.json | 6 +- .../v1.0.0/components/BigtableTable.json | 6 +- .../components/BillingBudgetsBudget.json | 6 +- .../BinaryAuthorizationAttestor.json | 6 +- .../components/BinaryAuthorizationPolicy.json | 6 +- .../CertificateManagerCertificate.json | 6 +- .../CertificateManagerCertificateMap.json | 6 +- ...CertificateManagerCertificateMapEntry.json | 6 +- .../CertificateManagerDNSAuthorization.json | 6 +- .../components/CloudAssetFolderFeed.json | 6 +- .../CloudAssetOrganizationFeed.json | 6 +- .../components/CloudAssetProjectFeed.json | 6 +- .../v1.0.0/components/CloudBuildTrigger.json | 6 +- .../components/CloudFunctions2Function.json | 6 +- .../components/CloudFunctionsFunction.json | 6 +- .../v1.0.0/components/CloudIDSEndpoint.json | 6 +- .../v1.0.0/components/CloudIOTDevice.json | 6 +- .../components/CloudIOTDeviceRegistry.json | 6 +- .../v1.0.0/components/CloudIdentityGroup.json | 6 +- .../components/CloudIdentityMembership.json | 6 +- .../v1.0.0/components/CloudSchedulerJob.json | 6 +- .../v1.0.0/components/CloudTasksQueue.json | 6 +- .../v1.0.0/components/ComputeAddress.json | 6 +- .../v1.0.0/components/ComputeAutoscaler.json | 6 +- .../components/ComputeBackendBucket.json | 6 +- .../ComputeBackendBucketSignedURLKey.json | 6 +- .../components/ComputeBackendService.json | 6 +- .../ComputeBackendServiceSignedURLKey.json | 6 +- .../v1.0.0/components/ComputeDisk.json | 6 +- .../ComputeDiskResourcePolicyAttachment.json | 6 +- .../components/ComputeExternalVPNGateway.json | 6 +- .../v1.0.0/components/ComputeFirewall.json | 6 +- .../components/ComputeFirewallPolicy.json | 6 +- .../ComputeFirewallPolicyAssociation.json | 6 +- .../components/ComputeFirewallPolicyRule.json | 6 +- .../components/ComputeForwardingRule.json | 6 +- .../ComputeGlobalNetworkEndpoint.json | 6 +- .../ComputeGlobalNetworkEndpointGroup.json | 6 +- .../components/ComputeHTTPHealthCheck.json | 6 +- .../components/ComputeHTTPSHealthCheck.json | 6 +- .../v1.0.0/components/ComputeHealthCheck.json | 6 +- .../v1.0.0/components/ComputeImage.json | 6 +- .../v1.0.0/components/ComputeInstance.json | 6 +- .../components/ComputeInstanceGroup.json | 6 +- .../ComputeInstanceGroupManager.json | 6 +- .../ComputeInstanceGroupNamedPort.json | 6 +- .../components/ComputeInstanceTemplate.json | 6 +- .../ComputeInterconnectAttachment.json | 6 +- .../components/ComputeMachineImage.json | 6 +- .../ComputeManagedSSLCertificate.json | 6 +- .../v1.0.0/components/ComputeNetwork.json | 6 +- .../components/ComputeNetworkEndpoint.json | 6 +- .../ComputeNetworkEndpointGroup.json | 6 +- .../ComputeNetworkFirewallPolicy.json | 6 +- ...mputeNetworkFirewallPolicyAssociation.json | 6 +- .../ComputeNetworkFirewallPolicyRule.json | 6 +- .../components/ComputeNetworkPeering.json | 6 +- .../ComputeNetworkPeeringRoutesConfig.json | 6 +- .../v1.0.0/components/ComputeNodeGroup.json | 6 +- .../components/ComputeNodeTemplate.json | 6 +- .../ComputeOrganizationSecurityPolicy.json | 6 +- ...OrganizationSecurityPolicyAssociation.json | 6 +- ...ComputeOrganizationSecurityPolicyRule.json | 6 +- .../components/ComputePacketMirroring.json | 6 +- .../components/ComputePerInstanceConfig.json | 6 +- .../components/ComputeProjectMetadata.json | 6 +- .../components/ComputeRegionAutoscaler.json | 6 +- ...uteRegionDiskResourcePolicyAttachment.json | 6 +- .../ComputeRegionNetworkEndpointGroup.json | 6 +- .../ComputeRegionPerInstanceConfig.json | 6 +- .../components/ComputeRegionSSLPolicy.json | 6 +- .../v1.0.0/components/ComputeReservation.json | 6 +- .../components/ComputeResourcePolicy.json | 6 +- .../v1.0.0/components/ComputeRoute.json | 6 +- .../v1.0.0/components/ComputeRouter.json | 6 +- .../components/ComputeRouterInterface.json | 6 +- .../v1.0.0/components/ComputeRouterNAT.json | 6 +- .../v1.0.0/components/ComputeRouterPeer.json | 6 +- .../components/ComputeSSLCertificate.json | 6 +- .../v1.0.0/components/ComputeSSLPolicy.json | 6 +- .../components/ComputeSecurityPolicy.json | 6 +- .../components/ComputeServiceAttachment.json | 6 +- .../ComputeSharedVPCHostProject.json | 6 +- .../ComputeSharedVPCServiceProject.json | 6 +- .../v1.0.0/components/ComputeSnapshot.json | 6 +- .../v1.0.0/components/ComputeSubnetwork.json | 6 +- .../components/ComputeTargetGRPCProxy.json | 6 +- .../components/ComputeTargetHTTPProxy.json | 6 +- .../components/ComputeTargetHTTPSProxy.json | 6 +- .../components/ComputeTargetInstance.json | 6 +- .../v1.0.0/components/ComputeTargetPool.json | 6 +- .../components/ComputeTargetSSLProxy.json | 6 +- .../components/ComputeTargetTCPProxy.json | 6 +- .../components/ComputeTargetVPNGateway.json | 6 +- .../v1.0.0/components/ComputeURLMap.json | 6 +- .../v1.0.0/components/ComputeVPNGateway.json | 6 +- .../v1.0.0/components/ComputeVPNTunnel.json | 6 +- .../components/ConfigControllerInstance.json | 6 +- .../components/ContainerAnalysisNote.json | 6 +- .../ContainerAnalysisOccurrence.json | 6 +- .../components/ContainerAttachedCluster.json | 6 +- .../v1.0.0/components/ContainerCluster.json | 6 +- .../v1.0.0/components/ContainerNodePool.json | 6 +- .../components/DLPDeidentifyTemplate.json | 6 +- .../v1.0.0/components/DLPInspectTemplate.json | 6 +- .../v1.0.0/components/DLPJobTrigger.json | 6 +- .../v1.0.0/components/DLPStoredInfoType.json | 6 +- .../v1.0.0/components/DNSManagedZone.json | 6 +- .../v1.118.1/v1.0.0/components/DNSPolicy.json | 6 +- .../v1.0.0/components/DNSRecordSet.json | 6 +- .../v1.0.0/components/DNSResponsePolicy.json | 6 +- .../components/DNSResponsePolicyRule.json | 6 +- .../v1.0.0/components/DataCatalogEntry.json | 6 +- .../components/DataCatalogEntryGroup.json | 6 +- .../components/DataCatalogPolicyTag.json | 6 +- .../v1.0.0/components/DataCatalogTag.json | 6 +- .../components/DataCatalogTagTemplate.json | 6 +- .../components/DataCatalogTaxonomy.json | 6 +- .../v1.0.0/components/DataFusionInstance.json | 6 +- .../components/DataflowFlexTemplateJob.json | 6 +- .../v1.0.0/components/DataflowJob.json | 6 +- .../v1.0.0/components/DataformRepository.json | 6 +- .../components/DataprocAutoscalingPolicy.json | 6 +- .../v1.0.0/components/DataprocCluster.json | 6 +- .../components/DataprocWorkflowTemplate.json | 6 +- .../v1.0.0/components/DatastoreIndex.json | 6 +- .../DatastreamConnectionProfile.json | 6 +- .../DatastreamPrivateConnection.json | 6 +- .../v1.0.0/components/DatastreamStream.json | 6 +- .../DeploymentManagerDeployment.json | 6 +- .../v1.0.0/components/DialogflowAgent.json | 6 +- .../v1.0.0/components/DialogflowCXAgent.json | 6 +- .../components/DialogflowCXEntityType.json | 6 +- .../v1.0.0/components/DialogflowCXFlow.json | 6 +- .../v1.0.0/components/DialogflowCXIntent.json | 6 +- .../v1.0.0/components/DialogflowCXPage.json | 6 +- .../components/DialogflowCXWebhook.json | 6 +- .../components/DialogflowEntityType.json | 6 +- .../components/DialogflowFulfillment.json | 6 +- .../v1.0.0/components/DialogflowIntent.json | 6 +- .../components/DocumentAIProcessor.json | 6 +- .../DocumentAIProcessorDefaultVersion.json | 6 +- .../components/EdgeContainerCluster.json | 6 +- .../components/EdgeContainerNodePool.json | 6 +- .../EdgeContainerVpnConnection.json | 6 +- .../v1.0.0/components/EdgeNetworkNetwork.json | 6 +- .../v1.0.0/components/EdgeNetworkSubnet.json | 6 +- .../components/EssentialContactsContact.json | 6 +- .../v1.0.0/components/EventarcTrigger.json | 6 +- .../v1.0.0/components/FilestoreBackup.json | 6 +- .../v1.0.0/components/FilestoreInstance.json | 6 +- .../v1.0.0/components/FilestoreSnapshot.json | 6 +- .../v1.0.0/components/FirebaseAndroidApp.json | 6 +- .../components/FirebaseDatabaseInstance.json | 6 +- .../components/FirebaseHostingChannel.json | 6 +- .../components/FirebaseHostingSite.json | 6 +- .../v1.0.0/components/FirebaseProject.json | 6 +- .../components/FirebaseStorageBucket.json | 6 +- .../v1.0.0/components/FirebaseWebApp.json | 6 +- .../v1.0.0/components/FirestoreIndex.json | 6 +- .../v1.118.1/v1.0.0/components/Folder.json | 6 +- .../components/GKEBackupBackupPlan.json | 6 +- .../v1.0.0/components/GKEHubFeature.json | 6 +- .../components/GKEHubFeatureMembership.json | 6 +- .../v1.0.0/components/GKEHubMembership.json | 6 +- .../components/HealthcareConsentStore.json | 6 +- .../components/HealthcareDICOMStore.json | 6 +- .../v1.0.0/components/HealthcareDataset.json | 6 +- .../components/HealthcareFHIRStore.json | 6 +- .../components/HealthcareHL7V2Store.json | 6 +- .../components/IAMAccessBoundaryPolicy.json | 6 +- .../v1.0.0/components/IAMAuditConfig.json | 6 +- .../v1.0.0/components/IAMCustomRole.json | 6 +- .../v1.0.0/components/IAMPartialPolicy.json | 6 +- .../v1.118.1/v1.0.0/components/IAMPolicy.json | 6 +- .../v1.0.0/components/IAMPolicyMember.json | 6 +- .../v1.0.0/components/IAMServiceAccount.json | 6 +- .../components/IAMServiceAccountKey.json | 6 +- .../v1.0.0/components/IAMWorkforcePool.json | 6 +- .../components/IAMWorkforcePoolProvider.json | 6 +- .../components/IAMWorkloadIdentityPool.json | 6 +- .../IAMWorkloadIdentityPoolProvider.json | 6 +- .../v1.118.1/v1.0.0/components/IAPBrand.json | 6 +- .../IAPIdentityAwareProxyClient.json | 6 +- .../components/IdentityPlatformConfig.json | 6 +- ...tityPlatformDefaultSupportedIDPConfig.json | 6 +- .../IdentityPlatformInboundSAMLConfig.json | 6 +- .../IdentityPlatformOAuthIDPConfig.json | 6 +- .../IdentityPlatformProjectDefaultConfig.json | 6 +- .../components/IdentityPlatformTenant.json | 6 +- ...atformTenantDefaultSupportedIDPConfig.json | 6 +- ...entityPlatformTenantInboundSAMLConfig.json | 6 +- .../IdentityPlatformTenantOAuthIDPConfig.json | 6 +- .../v1.0.0/components/KMSCryptoKey.json | 6 +- .../components/KMSCryptoKeyVersion.json | 6 +- .../v1.0.0/components/KMSKeyRing.json | 6 +- .../components/KMSKeyRingImportJob.json | 6 +- .../components/KMSSecretCiphertext.json | 6 +- .../v1.0.0/components/LoggingLogBucket.json | 6 +- .../components/LoggingLogExclusion.json | 6 +- .../v1.0.0/components/LoggingLogMetric.json | 6 +- .../v1.0.0/components/LoggingLogSink.json | 6 +- .../v1.0.0/components/LoggingLogView.json | 6 +- .../v1.0.0/components/MLEngineModel.json | 6 +- .../v1.0.0/components/MemcacheInstance.json | 6 +- .../components/MonitoringAlertPolicy.json | 6 +- .../components/MonitoringDashboard.json | 6 +- .../v1.0.0/components/MonitoringGroup.json | 6 +- .../MonitoringMetricDescriptor.json | 6 +- .../MonitoringMonitoredProject.json | 6 +- .../MonitoringNotificationChannel.json | 6 +- .../v1.0.0/components/MonitoringService.json | 6 +- .../MonitoringServiceLevelObjective.json | 6 +- .../MonitoringUptimeCheckConfig.json | 6 +- .../components/NetworkConnectivityHub.json | 6 +- .../components/NetworkConnectivitySpoke.json | 6 +- .../NetworkManagementConnectivityTest.json | 6 +- .../NetworkSecurityAuthorizationPolicy.json | 6 +- .../NetworkSecurityClientTLSPolicy.json | 6 +- .../NetworkSecurityServerTLSPolicy.json | 6 +- .../NetworkServicesEdgeCacheKeyset.json | 6 +- .../NetworkServicesEdgeCacheOrigin.json | 6 +- .../NetworkServicesEdgeCacheService.json | 6 +- .../NetworkServicesEndpointPolicy.json | 6 +- .../components/NetworkServicesGRPCRoute.json | 6 +- .../components/NetworkServicesGateway.json | 6 +- .../components/NetworkServicesHTTPRoute.json | 6 +- .../components/NetworkServicesMesh.json | 6 +- .../components/NetworkServicesTCPRoute.json | 6 +- .../components/NetworkServicesTLSRoute.json | 6 +- .../components/NotebooksEnvironment.json | 6 +- .../components/OSConfigGuestPolicy.json | 6 +- .../OSConfigOSPolicyAssignment.json | 6 +- .../components/OSConfigPatchDeployment.json | 6 +- .../components/OSLoginSSHPublicKey.json | 6 +- .../components/OrgPolicyCustomConstraint.json | 6 +- .../v1.0.0/components/PrivateCACAPool.json | 6 +- .../components/PrivateCACertificate.json | 6 +- .../PrivateCACertificateAuthority.json | 6 +- .../PrivateCACertificateTemplate.json | 6 +- .../v1.118.1/v1.0.0/components/Project.json | 6 +- .../components/PubSubLiteReservation.json | 6 +- .../components/PubSubLiteSubscription.json | 6 +- .../v1.0.0/components/PubSubLiteTopic.json | 6 +- .../v1.0.0/components/PubSubSchema.json | 6 +- .../v1.0.0/components/PubSubSubscription.json | 6 +- .../v1.0.0/components/PubSubTopic.json | 6 +- .../components/RecaptchaEnterpriseKey.json | 6 +- .../v1.0.0/components/RedisInstance.json | 6 +- .../components/ResourceManagerLien.json | 6 +- .../components/ResourceManagerPolicy.json | 6 +- .../v1.118.1/v1.0.0/components/RunJob.json | 6 +- .../v1.0.0/components/RunService.json | 6 +- .../v1.0.0/components/SQLDatabase.json | 6 +- .../v1.0.0/components/SQLInstance.json | 6 +- .../v1.0.0/components/SQLSSLCert.json | 6 +- .../v1.118.1/v1.0.0/components/SQLUser.json | 6 +- .../components/SecretManagerSecret.json | 6 +- .../SecretManagerSecretVersion.json | 6 +- .../SecurityCenterNotificationConfig.json | 6 +- .../components/SecurityCenterSource.json | 6 +- .../v1.118.1/v1.0.0/components/Service.json | 6 +- .../components/ServiceDirectoryEndpoint.json | 6 +- .../components/ServiceDirectoryNamespace.json | 6 +- .../components/ServiceDirectoryService.json | 6 +- .../v1.0.0/components/ServiceIdentity.json | 6 +- .../ServiceNetworkingConnection.json | 6 +- .../ServiceUsageConsumerQuotaOverride.json | 6 +- .../components/SourceRepoRepository.json | 6 +- .../v1.0.0/components/SpannerDatabase.json | 6 +- .../v1.0.0/components/SpannerInstance.json | 6 +- .../v1.0.0/components/StorageBucket.json | 6 +- .../StorageBucketAccessControl.json | 6 +- .../StorageDefaultObjectAccessControl.json | 6 +- .../v1.0.0/components/StorageHMACKey.json | 6 +- .../components/StorageNotification.json | 6 +- .../components/StorageTransferAgentPool.json | 6 +- .../v1.0.0/components/StorageTransferJob.json | 6 +- .../v1.118.1/v1.0.0/components/TPUNode.json | 6 +- .../components/TagsLocationTagBinding.json | 6 +- .../v1.0.0/components/TagsTagBinding.json | 6 +- .../v1.0.0/components/TagsTagKey.json | 6 +- .../v1.0.0/components/TagsTagValue.json | 6 +- .../v1.0.0/components/VPCAccessConnector.json | 6 +- .../v1.0.0/components/VertexAIDataset.json | 6 +- .../v1.0.0/components/VertexAIEndpoint.json | 6 +- .../components/VertexAIFeaturestore.json | 6 +- .../VertexAIFeaturestoreEntityType.json | 6 +- ...VertexAIFeaturestoreEntityTypeFeature.json | 6 +- .../v1.0.0/components/VertexAIIndex.json | 6 +- .../components/VertexAIIndexEndpoint.json | 6 +- .../components/VertexAIMetadataStore.json | 6 +- .../components/VertexAITensorboard.json | 6 +- .../v1.0.0/components/WorkflowsWorkflow.json | 6 +- .../WorkstationsWorkstationCluster.json | 6 +- .../v1.0.0/components/CloudEventSource.json | 4 +- .../ClusterTriggerAuthentication.json | 4 +- .../v2.14.0/v1.0.0/components/ScaledJob.json | 4 +- .../v1.0.0/components/ScaledObject.json | 4 +- .../components/TriggerAuthentication.json | 4 +- .../v1.0.0/components/KubeArmorConfig.json | 6 +- .../components/KubeArmorHostPolicy.json | 6 +- .../v1.0.0/components/KubeArmorPolicy.json | 6 +- .../components/NodeGroupInventoryWallet.json | 6 +- 1432 files changed, 4085 insertions(+), 4644 deletions(-) create mode 100644 server/meshmodel/cert-manager-crds/1.15.0/v1.0.0/model.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json create mode 100644 server/meshmodel/couchbase-operator/2.64.0/v1.0.0/model.json create mode 100644 server/meshmodel/datadog-operator/1.7.1/v1.0.0/model.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json create mode 100644 server/meshmodel/grafana-operator/4.4.5/v1.0.0/model.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json create mode 100644 server/meshmodel/heist/1.1.199/v1.0.0/model.json diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json index 5c609ff9473..70d33882f7d 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json index f93dfcd1de5..e0e10dec4aa 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json index cb3ee7f6ce0..5649e4900ba 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json index cd7f67421d5..ac64c56b294 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json index 694c8fe2811..ae48dd56499 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ExternalDNS", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json index fb66638b161..9ead94ba638 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Plan", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json index 75723875190..76f41df238a 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Product", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json index 6233b22a27d..aba00bfa26a 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Trickster", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json index 28d14d93013..ff30227f803 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TricksterBackend", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json index b660344c065..864ad37f4fd 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TricksterCache", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json index 854ee307379..e28d37dea81 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TricksterRequestRewriter", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json index 87500e2badb..f0e887c672d 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TricksterRule", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json index 143e2feee69..eff8ff95152 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TricksterTracingConfig", diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json index a48464b6f55..b577fe34b4e 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#333333", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json index e5ec932768d..4edaab4c400 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#333333", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json index 82df8729209..cf25c60b52a 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#333333", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json index bedddc45b92..6a3c88ba3b5 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#333333", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json index 320134f9c63..d298254c849 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#333333", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json b/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json index 58d0a443fba..54f2d6acf03 100644 --- a/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json +++ b/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\" width='590.1' height='207.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AdminConsole", diff --git a/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json b/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json index fc95f1201d5..e6ef8fbd632 100644 --- a/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json +++ b/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "AerospikeCluster", diff --git a/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json b/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json index ca7c62c6e43..4588e9eb17e 100644 --- a/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json +++ b/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "AIPodAutoscaler", diff --git a/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json b/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json index 750e2364c32..b5924ff18f7 100644 --- a/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json +++ b/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#0aaba9", + "secondaryColor": "#4FF0EE", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e \u003cdefs\u003e \u003cpath id=\"a\" d=\"M744.151 1273.145.22 843.325V.884L744.15 435.97z\" /\u003e \u003cpath id=\"c\" d=\"m742.709.099 742.867 435.22L742.71 870.537.63 435.75z\" /\u003e \u003c/defs\u003e \u003cg fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg transform=\"rotate(180 546.561 964.86)\"\u003e \u003cmask id=\"b\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#a\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#a\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#b)\" d=\"M507.433 986.135V567.83l-519.26-308.953v453.269L-.41 717.04l117.006 72.149V948.07l138.88 62.987V712.146l-140.758-87.872V490.983l264.289 156.582v430.58L762.234 1299.5V420.663L-4.59-18.859v152.075l4.18 7.775L620.867 507.06v543.835z\" /\u003e \u003c/g\u003e \u003cg transform=\"rotate(180 916.878 545.928)\"\u003e \u003cmask id=\"d\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#c\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#c\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#d)\" d=\"M1484.755 435.078 742.928 870.46.54 435.661l132.67-78.493 609.464 356.767 624.63-364.565-359.202-206.601-10.925 6.202-254.249 140.671-138.725-84.646-120.337 70.162 259.062 148.79 253.239-142.774 138.533 81.993-390.762 220.966-506.256-290.958L636.734 60.672l108.215 67.2L910.056 38.82l616.077 345.261z\" /\u003e \u003c/g\u003e \u003cg fill-rule=\"nonzero\"\u003e \u003cpath fill=\"#3FB594\" d=\"m1092.19 1928.268 740.669-437.063v-833.99l-740.67 434.778z\" /\u003e \u003cpath fill=\"#FFF\" d=\"M1700.908 733.433v443.238l-377.737 213.875v-140.165l268.929-151.446V796.972l-134.862 78.876v146.551l-255.115 147.81v435.511l630.661-361.338.416-588.515zm-608.637 1195.244v-139.69l741.015-431.897.634 133.754z\" /\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M585.685 943.585V1361.89L1104.95 1670.84V1217.57L1093.53 1212.68L976.522 1140.53V981.65L837.642 918.663V1217.57L978.4 1305.45L978.4 1438.74L714.111 1282.16L714.111 851.575L330.884 630.22L330.884 1509.06L1097.71 1948.58V1796.5L1093.53 1788.73L472.251 1422.66V878.825L585.685 943.585Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M349 656.778L1090.83 221.396L1833.21 656.195L1700.54 734.688L1091.08 377.921L466.451 742.486L825.653 949.087L836.578 942.885L1090.83 802.214L1229.55 886.86L1349.89 816.698L1090.83 667.908L837.588 810.682L699.055 728.689L1089.82 507.723L1596.07 798.681L1197.02 1031.18L1088.81 963.984L923.699 1053.04L307.622 707.775L349 656.778Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M1700.91 733.433V1176.67L1323.17 1390.55V1250.38L1592.1 1098.94V796.972L1457.24 875.848V1022.4L1202.12 1170.21V1605.72L1832.78 1244.38L1833.2 655.867L1700.91 733.433ZM1092.27 1928.68V1788.99L1833.28 1357.09L1833.92 1490.84L1092.27 1928.68Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json b/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json index 8126d1eb374..209a130264e 100644 --- a/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json +++ b/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#0aaba9", + "secondaryColor": "#4FF0EE", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e \u003cdefs\u003e \u003cpath id=\"a\" d=\"M744.151 1273.145.22 843.325V.884L744.15 435.97z\" /\u003e \u003cpath id=\"c\" d=\"m742.709.099 742.867 435.22L742.71 870.537.63 435.75z\" /\u003e \u003c/defs\u003e \u003cg fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg transform=\"rotate(180 546.561 964.86)\"\u003e \u003cmask id=\"b\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#a\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#a\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#b)\" d=\"M507.433 986.135V567.83l-519.26-308.953v453.269L-.41 717.04l117.006 72.149V948.07l138.88 62.987V712.146l-140.758-87.872V490.983l264.289 156.582v430.58L762.234 1299.5V420.663L-4.59-18.859v152.075l4.18 7.775L620.867 507.06v543.835z\" /\u003e \u003c/g\u003e \u003cg transform=\"rotate(180 916.878 545.928)\"\u003e \u003cmask id=\"d\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#c\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#c\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#d)\" d=\"M1484.755 435.078 742.928 870.46.54 435.661l132.67-78.493 609.464 356.767 624.63-364.565-359.202-206.601-10.925 6.202-254.249 140.671-138.725-84.646-120.337 70.162 259.062 148.79 253.239-142.774 138.533 81.993-390.762 220.966-506.256-290.958L636.734 60.672l108.215 67.2L910.056 38.82l616.077 345.261z\" /\u003e \u003c/g\u003e \u003cg fill-rule=\"nonzero\"\u003e \u003cpath fill=\"#3FB594\" d=\"m1092.19 1928.268 740.669-437.063v-833.99l-740.67 434.778z\" /\u003e \u003cpath fill=\"#FFF\" d=\"M1700.908 733.433v443.238l-377.737 213.875v-140.165l268.929-151.446V796.972l-134.862 78.876v146.551l-255.115 147.81v435.511l630.661-361.338.416-588.515zm-608.637 1195.244v-139.69l741.015-431.897.634 133.754z\" /\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M585.685 943.585V1361.89L1104.95 1670.84V1217.57L1093.53 1212.68L976.522 1140.53V981.65L837.642 918.663V1217.57L978.4 1305.45L978.4 1438.74L714.111 1282.16L714.111 851.575L330.884 630.22L330.884 1509.06L1097.71 1948.58V1796.5L1093.53 1788.73L472.251 1422.66V878.825L585.685 943.585Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M349 656.778L1090.83 221.396L1833.21 656.195L1700.54 734.688L1091.08 377.921L466.451 742.486L825.653 949.087L836.578 942.885L1090.83 802.214L1229.55 886.86L1349.89 816.698L1090.83 667.908L837.588 810.682L699.055 728.689L1089.82 507.723L1596.07 798.681L1197.02 1031.18L1088.81 963.984L923.699 1053.04L307.622 707.775L349 656.778Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M1700.91 733.433V1176.67L1323.17 1390.55V1250.38L1592.1 1098.94V796.972L1457.24 875.848V1022.4L1202.12 1170.21V1605.72L1832.78 1244.38L1833.2 655.867L1700.91 733.433ZM1092.27 1928.68V1788.99L1833.28 1357.09L1833.92 1490.84L1092.27 1928.68Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json index 170565c747f..debea13e227 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json index cdcfa0bf337..f04156696f7 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json index 8f9e4463b91..5c235f99361 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json index ae594e3af46..33179ebc448 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json index 715e0f7795c..16e0172f33b 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json index 4651dcd0311..036d3d79d12 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json index 7fc61ec8456..bd30cc2835c 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json index 8310d3809b3..98815a3af57 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json index 0672d5b6d09..264f784303a 100644 --- a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json +++ b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#000\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"150\" height=\"150\" rx=\"75\" fill=\"black\"/\u003e\n\u003cpath d=\"M43.7135 87.1392H37.1692L35.1672 82.335H24.2604L22.4365 87.1392H16L25.8334 62.8749H32.8781L43.7135 87.1392ZM29.4454 68.6729L25.8695 78.1007H33.3792L29.4454 68.6729ZM67.4858 62.8749H72.7781V87.1392H66.6983V71.983L60.1186 79.5959H59.1892L52.6099 71.983V87.1389H46.5301V62.8749H51.8224L59.6535 71.8759L67.4858 62.8749ZM88.1828 62.8749C97.0865 62.8749 101.663 68.3887 101.663 75.0417C101.663 82.0147 97.2294 87.1392 87.503 87.1392H77.4186V62.8749H88.1828ZM83.4979 82.692H87.4666C93.5815 82.692 95.4054 78.5641 95.4054 75.0057C95.4054 70.8427 93.1522 67.3215 87.395 67.3215H83.4978L83.4979 82.692ZM113.758 68.6282L106.093 61H134V88.7664L126.334 81.1391V68.6282H113.758ZM113.749 70.1567L105.857 78.0086V89H116.903L124.795 81.1481H113.749V70.1567Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#fff\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json index fec25a1dc6d..8b05bcf8750 100644 --- a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json +++ b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#000\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"150\" height=\"150\" rx=\"75\" fill=\"black\"/\u003e\n\u003cpath d=\"M43.7135 87.1392H37.1692L35.1672 82.335H24.2604L22.4365 87.1392H16L25.8334 62.8749H32.8781L43.7135 87.1392ZM29.4454 68.6729L25.8695 78.1007H33.3792L29.4454 68.6729ZM67.4858 62.8749H72.7781V87.1392H66.6983V71.983L60.1186 79.5959H59.1892L52.6099 71.983V87.1389H46.5301V62.8749H51.8224L59.6535 71.8759L67.4858 62.8749ZM88.1828 62.8749C97.0865 62.8749 101.663 68.3887 101.663 75.0417C101.663 82.0147 97.2294 87.1392 87.503 87.1392H77.4186V62.8749H88.1828ZM83.4979 82.692H87.4666C93.5815 82.692 95.4054 78.5641 95.4054 75.0057C95.4054 70.8427 93.1522 67.3215 87.395 67.3215H83.4978L83.4979 82.692ZM113.758 68.6282L106.093 61H134V88.7664L126.334 81.1391V68.6282H113.758ZM113.749 70.1567L105.857 78.0086V89H116.903L124.795 81.1481H113.749V70.1567Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#fff\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json index 414deef7648..4a74dee7dfd 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AntreaAgentInfo", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json index a685612f8a5..74b1065268a 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AntreaControllerInfo", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json index afa7a63d20d..e89b159ce2e 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterGroup", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json index 890c8b711e0..999a72fa9b1 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterNetworkPolicy", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json index 81927b1cf9f..4ef4b7a2b0e 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Egress", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json index f3258abd89c..6da26bf4e15 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalEntity", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json index bd41af56a22..c16557f25a0 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalIPPool", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json index 4a865f37d60..369a4b647dc 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalNode", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json index 938e030da6e..90517242872 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Group", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json index 6fa3d884ede..1a1cfe8122a 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IPPool", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json index 4d568cf6981..dd1938866d1 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "NetworkPolicy", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json index 0566e8585eb..30bc5901b4f 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "SupportBundleCollection", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json index 93a01f2aed6..a0bcb26fd90 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Tier", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json index 316259fef31..623d2043aaa 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Traceflow", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json index 9768ce610d8..2dcb4486b43 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TrafficControl", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json index c608ba99ec1..6065834c3ea 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Chaos", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json index 39aaa18982d..1c92f86dd64 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\t.st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n\t.st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n\t.st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n\t.st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n\t.st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n\t.st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n\t.st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n\t.st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n\t.st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n\t.st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n\t.st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n\tL405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n\tC206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n\tc-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n\tc-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n\tc141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n\ts50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n\tc0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n\tc5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n\tc-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n\tC407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n\tC409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n\tc-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n\tc12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n\tc3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNode", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json index 0f4d1572585..20ce8c2b044 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\t.st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n\t.st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n\t.st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n\t.st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n\t.st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n\t.st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n\t.st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n\t.st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n\t.st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n\t.st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n\t.st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n\tL405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n\tC206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n\tc-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n\tc-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n\tc141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n\ts50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n\tc0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n\tc5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n\tc-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n\tC407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n\tC409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n\tc-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n\tc12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n\tc3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ShardingSphereProxy", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json index 7232e1afd74..4422e20da1b 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\t.st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n\t.st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n\t.st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n\t.st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n\t.st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n\t.st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n\t.st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n\t.st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n\t.st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n\t.st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n\t.st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n\tL405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n\tC206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n\tc-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n\tc-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n\tc141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n\ts50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n\tc0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n\tc5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n\tc-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n\tC407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n\tC409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n\tc-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n\tc12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n\tc3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n .st1{opacity:0.7;fill:#FFFFFF;}\n .st2{opacity:0.8;fill:#FFFFFF;}\n .st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ShardingSphereProxyServerConfig", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json index c8c8bfd97c1..6a51b7a4165 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageNode", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json index a0815e8f643..f927027a00d 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#F26F23", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n .st1{opacity:0.7;fill:#FFFFFF;}\n .st2{opacity:0.8;fill:#FFFFFF;}\n .st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageProvider", diff --git a/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json b/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json index e4ae6a51009..f4b475cb807 100644 --- a/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json +++ b/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8773D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#EFEEED;}\n .st1{fill:#F8773D;}\n .st2{fill:#56AE89;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M57.1,32.7c-0.9-1.3-0.8-3.1,0.4-4.3c0.8-0.8,1.8-1.5,2.8-2.1s1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12\n c-7.5-0.7-9.5-1.6-10.4-4.4c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7C25,6,22.9,6.8,15.7,7.5C10.2,8.1,0,9,0,19.6v3.8\n c0,1.2,0.6,2.3,1.6,2.9s2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4S0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3S57.9,33.7,57.1,32.7L57.1,32.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st2\" d=\"M18.1,27.7c-0.5,0-0.9,0.1-1.3,0.3c0.3,0.3,0.4,0.7,0.3,1.2c-0.1,0.4-0.5,0.8-0.9,0.8c-0.4,0-0.8-0.1-1-0.4\n c-0.3,0.6-0.4,1.3-0.2,2.1c0.3,1.4,1.5,2.4,2.8,2.5c2,0.2,3.6-1.3,3.6-3.3C21.4,29.2,19.9,27.7,18.1,27.7 M19.6,33.4\n c-0.4,0-0.8-0.3-0.8-0.8s0.3-0.8,0.8-0.8s0.8,0.4,0.8,0.8S20,33.4,19.6,33.4\"/\u003e\n \u003cpath class=\"st2\" d=\"M40.9,29.6c-0.3,0.6-0.4,1.4-0.2,2.1c0.3,1.2,1.2,2.2,2.5,2.4c2.3,0.5,4.3-1.4,3.9-3.7\n c-0.2-1.4-1.4-2.6-2.9-2.7c-0.6-0.1-1.2,0-1.7,0.3c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.5,0.7-0.9,0.8C41.6,30,41.2,29.9,40.9,29.6\n M44.6,32.7c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8s-0.3,0.8-0.8,0.8S44.6,33.1,44.6,32.7\"/\u003e\n \u003cpath class=\"st2\" d=\"M44.3,22.7c-6,0-4,4.3-13.4,5.3c-8.1-0.9-7.7-4.3-11.4-5.2c-5-1.1-9.9,2.5-10.2,7.5s3.5,8.9,8.3,8.9\n c6,0,4-4.3,13.3-5.3c8.2,0.9,7.7,4.3,11.4,5.2c5,1.1,9.9-2.5,10.2-7.5C52.9,26.7,49.1,22.7,44.3,22.7 M18.1,35.8\n c-2.7,0-4.9-2.3-4.9-5c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S20.8,35.8,18.1,35.8 M43.9,35.8c-2.7,0-5-2.3-4.9-5\n c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S46.6,35.8,43.9,35.8\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M56.6,24.6c-1.1,0-2.1-0.9-2.1-2v-3c0-3.3-2-4-9-4.7c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4\n c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-3c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3\n l0,0c0.8,0,1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2c5.7,0.5,12.7,1.2,12.7,8.7v3C58.6,23.6,57.7,24.6,56.6,24.6z\"/\u003e\n \u003cpath class=\"st1\" d=\"M31,58.6c-0.8,0-1.6-0.5-1.9-1.3c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2\n s2,0.9,2,2v3c0,3.3,2,4,9,4.7c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3c0-1.1,0.9-2,2.1-2\n s2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2C32.6,58.1,31.8,58.6,31,58.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\" width='70' height='62'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n \u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n c1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n \u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n c-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n c1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n C44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n \u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n c1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n c1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n c0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n c-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n c5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Agent", diff --git a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json index 466972be60e..159c20e642a 100644 --- a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json +++ b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8773D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#EFEEED;}\n .st1{fill:#F8773D;}\n .st2{fill:#56AE89;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M57.1,32.7c-0.9-1.3-0.8-3.1,0.4-4.3c0.8-0.8,1.8-1.5,2.8-2.1s1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12\n c-7.5-0.7-9.5-1.6-10.4-4.4c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7C25,6,22.9,6.8,15.7,7.5C10.2,8.1,0,9,0,19.6v3.8\n c0,1.2,0.6,2.3,1.6,2.9s2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4S0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3S57.9,33.7,57.1,32.7L57.1,32.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st2\" d=\"M18.1,27.7c-0.5,0-0.9,0.1-1.3,0.3c0.3,0.3,0.4,0.7,0.3,1.2c-0.1,0.4-0.5,0.8-0.9,0.8c-0.4,0-0.8-0.1-1-0.4\n c-0.3,0.6-0.4,1.3-0.2,2.1c0.3,1.4,1.5,2.4,2.8,2.5c2,0.2,3.6-1.3,3.6-3.3C21.4,29.2,19.9,27.7,18.1,27.7 M19.6,33.4\n c-0.4,0-0.8-0.3-0.8-0.8s0.3-0.8,0.8-0.8s0.8,0.4,0.8,0.8S20,33.4,19.6,33.4\"/\u003e\n \u003cpath class=\"st2\" d=\"M40.9,29.6c-0.3,0.6-0.4,1.4-0.2,2.1c0.3,1.2,1.2,2.2,2.5,2.4c2.3,0.5,4.3-1.4,3.9-3.7\n c-0.2-1.4-1.4-2.6-2.9-2.7c-0.6-0.1-1.2,0-1.7,0.3c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.5,0.7-0.9,0.8C41.6,30,41.2,29.9,40.9,29.6\n M44.6,32.7c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8s-0.3,0.8-0.8,0.8S44.6,33.1,44.6,32.7\"/\u003e\n \u003cpath class=\"st2\" d=\"M44.3,22.7c-6,0-4,4.3-13.4,5.3c-8.1-0.9-7.7-4.3-11.4-5.2c-5-1.1-9.9,2.5-10.2,7.5s3.5,8.9,8.3,8.9\n c6,0,4-4.3,13.3-5.3c8.2,0.9,7.7,4.3,11.4,5.2c5,1.1,9.9-2.5,10.2-7.5C52.9,26.7,49.1,22.7,44.3,22.7 M18.1,35.8\n c-2.7,0-4.9-2.3-4.9-5c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S20.8,35.8,18.1,35.8 M43.9,35.8c-2.7,0-5-2.3-4.9-5\n c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S46.6,35.8,43.9,35.8\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M56.6,24.6c-1.1,0-2.1-0.9-2.1-2v-3c0-3.3-2-4-9-4.7c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4\n c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-3c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3\n l0,0c0.8,0,1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2c5.7,0.5,12.7,1.2,12.7,8.7v3C58.6,23.6,57.7,24.6,56.6,24.6z\"/\u003e\n \u003cpath class=\"st1\" d=\"M31,58.6c-0.8,0-1.6-0.5-1.9-1.3c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2\n s2,0.9,2,2v3c0,3.3,2,4,9,4.7c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3c0-1.1,0.9-2,2.1-2\n s2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2C32.6,58.1,31.8,58.6,31,58.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\" width='70' height='62'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Controller", diff --git a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json index 58b94c87047..02350ffe887 100644 --- a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json +++ b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8773D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#EFEEED;}\n .st1{fill:#F8773D;}\n .st2{fill:#56AE89;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M57.1,32.7c-0.9-1.3-0.8-3.1,0.4-4.3c0.8-0.8,1.8-1.5,2.8-2.1s1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12\n c-7.5-0.7-9.5-1.6-10.4-4.4c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7C25,6,22.9,6.8,15.7,7.5C10.2,8.1,0,9,0,19.6v3.8\n c0,1.2,0.6,2.3,1.6,2.9s2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4S0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3S57.9,33.7,57.1,32.7L57.1,32.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st2\" d=\"M18.1,27.7c-0.5,0-0.9,0.1-1.3,0.3c0.3,0.3,0.4,0.7,0.3,1.2c-0.1,0.4-0.5,0.8-0.9,0.8c-0.4,0-0.8-0.1-1-0.4\n c-0.3,0.6-0.4,1.3-0.2,2.1c0.3,1.4,1.5,2.4,2.8,2.5c2,0.2,3.6-1.3,3.6-3.3C21.4,29.2,19.9,27.7,18.1,27.7 M19.6,33.4\n c-0.4,0-0.8-0.3-0.8-0.8s0.3-0.8,0.8-0.8s0.8,0.4,0.8,0.8S20,33.4,19.6,33.4\"/\u003e\n \u003cpath class=\"st2\" d=\"M40.9,29.6c-0.3,0.6-0.4,1.4-0.2,2.1c0.3,1.2,1.2,2.2,2.5,2.4c2.3,0.5,4.3-1.4,3.9-3.7\n c-0.2-1.4-1.4-2.6-2.9-2.7c-0.6-0.1-1.2,0-1.7,0.3c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.5,0.7-0.9,0.8C41.6,30,41.2,29.9,40.9,29.6\n M44.6,32.7c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8s-0.3,0.8-0.8,0.8S44.6,33.1,44.6,32.7\"/\u003e\n \u003cpath class=\"st2\" d=\"M44.3,22.7c-6,0-4,4.3-13.4,5.3c-8.1-0.9-7.7-4.3-11.4-5.2c-5-1.1-9.9,2.5-10.2,7.5s3.5,8.9,8.3,8.9\n c6,0,4-4.3,13.3-5.3c8.2,0.9,7.7,4.3,11.4,5.2c5,1.1,9.9-2.5,10.2-7.5C52.9,26.7,49.1,22.7,44.3,22.7 M18.1,35.8\n c-2.7,0-4.9-2.3-4.9-5c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S20.8,35.8,18.1,35.8 M43.9,35.8c-2.7,0-5-2.3-4.9-5\n c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S46.6,35.8,43.9,35.8\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M56.6,24.6c-1.1,0-2.1-0.9-2.1-2v-3c0-3.3-2-4-9-4.7c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4\n c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-3c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3\n l0,0c0.8,0,1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2c5.7,0.5,12.7,1.2,12.7,8.7v3C58.6,23.6,57.7,24.6,56.6,24.6z\"/\u003e\n \u003cpath class=\"st1\" d=\"M31,58.6c-0.8,0-1.6-0.5-1.9-1.3c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2\n s2,0.9,2,2v3c0,3.3,2,4,9,4.7c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3c0-1.1,0.9-2,2.1-2\n s2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2C32.6,58.1,31.8,58.6,31,58.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\" width='70' height='62'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Policy", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json index dcc5de70f0b..50d6d103a7f 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixClusterConfig", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json index 351d5caf50e..b889808eb82 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixConsumer", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json index 48be4e0a8eb..ba65fa35863 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixGlobalRule", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json index f0864dcf68b..4e6a316d662 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixPluginConfig", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json index 1d7d6305699..db368a5c35d 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixRoute", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json index 96ece05edcc..26a6b58751e 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixTls", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json index fa9032bc0c0..d2d8ab4faee 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixUpstream", diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json index 19b02655216..cfc444ffdb0 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json @@ -45,18 +45,16 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27233_10470)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27233_10470)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27233_10470)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27233_10470\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27233_10470\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27233_10470\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" }, diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json index 373a61e6a7d..8d887a3ea1e 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json index c5843f0e599..b68ba3a8206 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json index 2f866423664..6d6efd798c6 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json index f8a25f77940..087f37aeb84 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApisixRoute", diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json index 66833595661..81e80a45f9a 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json index e7dadc890c1..5ccacea48eb 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json b/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json index fcf96bc8606..dc70343d086 100644 --- a/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json +++ b/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Application", diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json index 9466a012b4c..8e5eb6202e4 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json index d0c3111bbeb..e8bbab45144 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json index 8bf962b7757..ba994628566 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json index bea5aa63dae..399afe93172 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json index 0c0931a81b3..39621c798de 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json index 141c4cf7eff..baf74086bdb 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json index 257ef7659c9..0e4cf8c204e 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json index d4ea91c218a..47b97c5ebf8 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#fe733e", + "secondaryColor": "#FFB887", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json index 9f6f922465a..ed7337d63f7 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#fe733e", + "secondaryColor": "#FFB887", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json index 9488ad67ac4..618d58ebfdc 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#fe733e", + "secondaryColor": "#FFB887", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json index 3bace8a3589..d223648d68f 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#fe733e", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\" width='522' height='673'\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ArgoCD", diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json index 97f5e94f3ac..95bb0a2bf48 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#fe733e", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\" width='522' height='673'\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ArgoCDExport", diff --git a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json index 27f8a34c65f..cc266b0458f 100644 --- a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json +++ b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#263D5C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{fill:#4AC1E0;}\n\t.st2{fill:#263D5C;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\" width='223.1' height='211.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;fill:#FF00FF;}\n .st1{opacity:0.8;fill:#FFFFFF;}\n .st2{fill:#FFFFFF;}\n .st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cg\u003e\n \u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n \u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n \u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n \u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n \u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n c0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n c-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n c-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n c2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n c20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n C67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n \u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n c-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n c-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{opacity:0.8;fill:#FFFFFF;}\n\t.st2{fill:#FFFFFF;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ArmoryAccount", diff --git a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json index a4c301c25fc..a22900e0f98 100644 --- a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json +++ b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#263D5C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{fill:#4AC1E0;}\n\t.st2{fill:#263D5C;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\" width='223.1' height='211.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;fill:#FF00FF;}\n .st1{opacity:0.8;fill:#FFFFFF;}\n .st2{fill:#FFFFFF;}\n .st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cg\u003e\n \u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n \u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n \u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n \u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n \u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n c0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n c-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n c-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n c2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n c20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n C67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n \u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n c-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n c-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{opacity:0.8;fill:#FFFFFF;}\n\t.st2{fill:#FFFFFF;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "SpinnakerService", diff --git a/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json b/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json index 182ca5a312c..03b4e871bfe 100644 --- a/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json +++ b/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json @@ -43,9 +43,8 @@ "relationships": null }, "metadata": { - "capabilities": "", + "capabilities": "{ \"designer\": { \"edit\": { \"config\": false, \"lock\": true, \"shape\": { \"convert-shape\": true }, \"style\": true }, \"label\": { \"edit\": true, \"show\": true, \"sync-with-config-property\": \"label\" } } }", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AWSAPIGateway", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json index f05fb7b9e06..b4b2f3641ef 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "API", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json index 6359da82073..6a876ac724c 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json index e7718c8ae7e..edffe5fd534 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Authorizer", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json index 94e6b89e79c..b9c4fc0880e 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Deployment", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json index c09646e6a3c..3ed2d042372 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json index 5ce958d7b82..9dfd2770919 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Integration", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json index 9e528c9421a..b2643532f90 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Route", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json index db062432e71..1a14abb81f0 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Stage", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json index 2e4e7d420e8..e1cc2aca388 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VPCLink", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json index e9cdeba5403..e375eae7a19 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json index be7216b5fcc..f74d70d3e20 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json index 2fb89ce7b45..6b8d019ffcd 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ScalableTarget", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json index 07d056a082b..f8fb1dbdd9f 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", - "secondaryColor": "#00D3A9", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ScalingPolicy", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json index 39e171cd89d..77e8900a1e1 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", + "primaryColor": "#ED7100", "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json index 84043f0c732..94406ecb93c 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", - "secondaryColor": "#00D3A9", + "primaryColor": "#ED7100", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CachePolicy", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json index 7f44f5e862d..4d1b88fa1a7 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", - "secondaryColor": "#00D3A9", + "primaryColor": "#ED7100", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Distribution", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json index f92b8e13cae..93f9bd12235 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", + "primaryColor": "#ED7100", "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json index 7c8a0cc15c7..807d8d76716 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", - "secondaryColor": "#00D3A9", + "primaryColor": "#ED7100", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Function", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json index f2ebffcefc7..72bc3191bf8 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", - "secondaryColor": "#00D3A9", + "primaryColor": "#ED7100", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "OriginRequestPolicy", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json index 4c4aad292e6..bda9380c900 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#8C4FFF", - "secondaryColor": "#00D3A9", + "primaryColor": "#ED7100", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ResponseHeadersPolicy", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index e83d869efb7..db729eca360 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json index b2f48180772..da2f5a3121b 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EventDataStore", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json index 4859c326d36..ec975e373b0 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json index 8357f91340e..18839ce4ca7 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Trail", diff --git a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json index ec39dc02d79..84f6340c2cb 100644 --- a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json index fce60fc7d4e..4937152b333 100644 --- a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json index fbf89ca038a..bf4cebfec0d 100644 --- a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json +++ b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MetricAlarm", diff --git a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json index 415f909b331..122c06330b8 100644 --- a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json index 37121e68f82..59897218a0a 100644 --- a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json index 7e23dfd6594..0be9c9523d0 100644 --- a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json +++ b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LogGroup", diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json index 422b772141c..cb5030dd19f 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json index 0614b8fb8e0..9df8782841a 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json index 4cbe4c465c8..29d6d169924 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json index 8ae5497f409..0c45421881b 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json index b193f36b620..86d81ae20e1 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json index 0d7f5252a7b..1c57d7adb29 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json index 2a27f7ba26c..b6c075bb01b 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Backup", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json index aeff0c1146a..9d452818ff0 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json index d9c56757128..c225c523dc9 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "GlobalTable", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json index c9f31d706d0..2d011e0522c 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Table", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json index 792034b5076..c24fe015637 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json index 7b9cd415ffa..9030a3abf45 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DHCPOptions", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json index 80af4314e7c..81ba213ad1c 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ElasticIPAddress", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json index 1681b52da82..2209232c5e8 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json index f4e237ea7cd..bf07bc26771 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FlowLog", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json index d5bc1f813b2..439f3a9e5bc 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Instance", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json index 3e23b04cade..5a1c5be8688 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "InternetGateway", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json index a0560fab43c..9c3fb9fb600 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NATGateway", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json index 8c2bab26c18..7b92372137f 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NetworkACL", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json index b9197b7318e..75d824cd361 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RouteTable", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json index 854a690eeba..de69dae27d1 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "SecurityGroup", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json index c3cb1009ba2..36c2dcc4b9e 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Subnet", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json index 35504a30e70..9a274b1f307 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TransitGateway", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json index 6cd390a0841..85544ec0e18 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPC", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json index 0ceec1ada28..b4720b09d30 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPCEndpoint", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json index 7ea5efab16b..061ad0a2694 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "#00D3A9", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPCEndpointServiceConfiguration", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json index ed31bc6cc53..4695c415fd6 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPCPeeringConnection", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json index c89b829a50b..08b4cf5a0cd 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json index 88f5e0bb28a..fabac927050 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json index ef85556754c..f066dbb412c 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PullThroughCacheRule", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json index b697fa7e434..2fc316ac62c 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Repository", diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json index 8f55f5f949a..5ba0fd787bb 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json index 2389ce4a7ff..a7a9d18a9b3 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json index f7e7468d21e..70cd4114789 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json index c809cfd7fd6..b6b04f21ad2 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json index 58a7c692efb..9ea097acc0e 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json index b730bdcdfc9..cea0fe03c21 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AccessPoint", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json index af7d79be5b7..39f3f91115e 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json index 9cf8262ead7..13aa11c8745 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json index a0f456012e0..1a4c35fc1cb 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FileSystem", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json index aac51beec79..8afa4f5460d 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "MountTarget", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json index 90d6fc917a0..c3723243262 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "#00D3A9", + "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AccessEntry", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json index c76222aedd2..ac014ea2f8e 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Addon", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json index c7b2aaf601e..81ca79c2220 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json index c0e0d77c62b..8b6a7e53710 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Cluster", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json index 269f9d8d380..a9133822123 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FargateProfile", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json index 8a7ddd5fc59..120ad7e4d11 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json index f5b913eeb5b..34089dc569e 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "IdentityProviderConfig", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json index 0133629d162..6cd137764cf 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Nodegroup", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json index ef23ffcca86..12f90c40df9 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PodIdentityAssociation", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json index 2d08ab6fc84..2e25ce2c635 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json index ac189e67724..7a856e8a3ce 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CacheParameterGroup", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json index 1eee95c79a7..e182d8ecf3c 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CacheSubnetGroup", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json index 77bbef9553b..ad77c393b64 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json index 7c4d812c114..686dcc6d7f4 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ReplicationGroup", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json index fa904b4722f..5f9c61fadf1 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Snapshot", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json index 7cc34bbdd66..4c83d72b47e 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json index ab7be0f3251..adb8cdb5e3f 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "UserGroup", diff --git a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json index d8cd5b1fb85..656bb48db13 100644 --- a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json index 612bc16f62e..41c284578b1 100644 --- a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json +++ b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cylinder", + "shape": "cilynder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ElasticsearchDomain", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json index d6c5db06ed8..e94c7ff6bb5 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json index 21fdd5225fd..389b5132f1c 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json index 3401fe8d5d5..42771010c51 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "JobRun", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json index 76f71cbf97e..24d033019f3 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VirtualCluster", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index 1549570e459..b2f33fadbb7 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json index 4d6e2057562..1a772f3838a 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Archive", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json index 0d9eac4ec2d..3d9f161c9a8 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Endpoint", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json index a8ae9a8fc59..27c337a899e 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EventBus", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json index f0a42fabe20..2b92747edb0 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json index d451e6b00a0..b133348ca70 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width=\"40\" height=\"40\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Rule", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json index f3c8f536cf2..1c5b0325988 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json index 490391708f2..e9d9c142d2d 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json index 398b60ca925..d79a7ea1d18 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Group", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json index 0fe6c86a8bd..d0a2a5f21fb 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "InstanceProfile", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json index 0576bbea1fe..c951d507524 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "OpenIDConnectProvider", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json index 9fbb763dcd9..f9557466b87 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Policy", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json index c983bfac17a..1cd7a00c89e 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Role", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json index e3a9f025452..c149e49b1c0 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json index 2cc85f8658b..daac437ebe7 100644 --- a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json index 345afd8253a..89d8cde66e4 100644 --- a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json index 2602ec822d9..5a590d00f8a 100644 --- a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json +++ b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Stream", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json index 802e62b08ba..99895571434 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json index 678fa3b0d13..bae5968c8fe 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Alias", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json index 99d456dac44..068a07afac3 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json index 1b0b04b14d5..bfe7db797e7 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Grant", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json index 3524aa308b0..188bbacadea 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Key", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json index 7bb30a69153..9a67efa4034 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json index abe8442587d..2bb0c115e03 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "#00D3A9", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Alias", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json index 53e0b16b2c6..91ab140d9c9 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CodeSigningConfig", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json index 22c431496f2..a7c76a03958 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EventSourceMapping", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json index d78ca4d527e..f5e3cd6d436 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json index 9f76059ebc4..ad480e8dcec 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Function", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json index 33dfe7a4543..0754a7c768b 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FunctionURLConfig", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json index 4f0a2fb3647..8dc88d237e4 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LayerVersion", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json index 675996ddee9..40ba021feab 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "#00D3A9", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Version", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json index 3615ff7df97..c2180d2ea08 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ACL", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json index 79d012c2d09..282573c8e53 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json index b75cb842b4d..8d2a3dfe285 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Cluster", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json index 00a292029fa..faddb2ea749 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json index b6712519317..e737b854608 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ParameterGroup", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json index ec6ba3180eb..863b9e143c5 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Snapshot", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json index 9870e5236f7..dee9d2a4498 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "SubnetGroup", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json index 9963eac4f8e..e982fafd265 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json index 6e38334aaea..29ed2cbe597 100644 --- a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json index 3f9404b0900..29f28f36048 100644 --- a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json +++ b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Broker", diff --git a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json index 4529594d7c6..d50160ad916 100644 --- a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json b/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json index f8b72ca51e9..c05f5bf4958 100644 --- a/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json +++ b/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json index 3a79e338eb8..bc79d0fe26a 100644 --- a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json index f5acbd3307e..7dcb4ec7387 100644 --- a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json +++ b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json index ebe2aca2d7b..736841ffbb9 100644 --- a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json index ab2ee974a50..b44d565285f 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json index 1bfd372a22c..213cf3f26a7 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AlertManagerDefinition", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json index fdecb2cbf2f..effa10ab906 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json index 0c7bc5f837f..642139dce4b 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LoggingConfiguration", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json index d414d6a1d0d..7eba78ff967 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RuleGroupsNamespace", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json index f3e7a74d377..9455d8e592c 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Workspace", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json index b11d460ec25..688bd301fa8 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json index 1ba5cdd941a..8158829ca66 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBCluster", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json index 654bef73eff..0018edee293 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBClusterParameterGroup", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json index 408de8a0f2a..880f66f9ca0 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBInstance", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json index f90554c191e..6a16b36bda0 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBParameterGroup", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json index 075e986e492..708834ac420 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBProxy", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json index ce97b6c4209..f574c059fbf 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBSubnetGroup", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json index 471113eddff..c9b883c24d4 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json index 5611af7d18f..9d871a4344f 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "GlobalCluster", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json index e3a191d02cd..7dd04ab9a03 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json index 44ef1529598..7183396ff6c 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json index ac0825d251a..9504c904545 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HealthCheck", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json index a1d34ba20dd..5ec90dd12c4 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HostedZone", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json index 8147866befc..bef0a0aca82 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RecordSet", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json index 012d76fccff..02291a9a2b7 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json index 314d8054f5d..1cd0a2efff7 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json index bb97b8c6ec5..7103734c55a 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ResolverEndpoint", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json index aef69c01dd7..2e46ae16961 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ResolverRule", diff --git a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json index 0851ba1c46a..c4873642fb6 100644 --- a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7AA116", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Storage\" fill=\"#7AA116\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json index 12163b52263..66dfd11355f 100644 --- a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json +++ b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7AA116", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Storage\" fill=\"#7AA116\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Bucket", diff --git a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json index 293abfa2fbb..280aa76d2ed 100644 --- a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7AA116", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Storage\" fill=\"#7AA116\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json index a9eaadbfce4..04cbb62d7a2 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json index 2c50af0106e..972a77c0686 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "App", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json index 1f89dcb8dfa..b534acf0722 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DataQualityJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json index 44e2eaeac51..6a04aef8721 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Domain", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json index 0d39a3015a8..7db6a2494eb 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Endpoint", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json index 66a6a7d7c0e..8d87f96e5f9 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EndpointConfig", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json index 0b6fe2f4dc6..5f6d1d9e101 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FeatureGroup", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json index 3fed9465804..986f337a3b9 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json index 64f9bd8e7e9..a188ab2c563 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HyperParameterTuningJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json index 8d213b5197d..860de130697 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", + "primaryColor": "#01A88D", "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "InferenceComponent", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json index d9281492089..7fe40ab071e 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Model", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json index db7781d18a2..1d13f405d61 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelBiasJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json index abdcdc9ca09..9eaf7e8f91e 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelExplainabilityJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json index 877f860a79b..eae882c8f1c 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelPackage", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json index cb8f74b6ea8..e4c17a5e65a 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelPackageGroup", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json index 5b8cfa368cc..69a2d47ed83 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelQualityJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json index 91976495ab6..be6ba784587 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MonitoringSchedule", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json index cfdfdb7a675..3494d8d774a 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NotebookInstance", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json index 78d7b2472a3..2c51562fa5f 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NotebookInstanceLifecycleConfig", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json index 149866d0828..7ac88cdc890 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Pipeline", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json index e1eeacc16d8..db6256a3e7f 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PipelineExecution", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json index baf8905967c..76e9ff3276c 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ProcessingJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json index a4dc4839dce..fb352b0de47 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TrainingJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json index 2cb129e49f0..7379abfca69 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TransformJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json index e2373e4e801..a75c876ae20 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "UserProfile", diff --git a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json index 05e2eae6e2b..e87754ca534 100644 --- a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json index 1c0a12a91a4..48286a1b96f 100644 --- a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json index 6b80286720b..6dd9c659144 100644 --- a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json +++ b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Secret", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json index 3025af302c9..e700526bcd9 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Activity", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index 06937163904..5f36fde5f41 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json index bf83d3102ee..4ded577c2c0 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json index 61234dd9bb1..97856d67b7c 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "StateMachine", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index cbac8c25c2e..50b4872c9a8 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json index c1c4b4a916a..2a0d2f9a4ab 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json index ccd510d7ae5..a26aafc0eb0 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PlatformApplication", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json index 12bca398818..82f14555e89 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PlatformEndpoint", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json index 2327b492cb4..0fa02c0a14d 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Subscription", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json index bf91f30600c..e9e07eb1e25 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Topic", diff --git a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json index 5f1a8987230..0e455578188 100644 --- a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#E7157B", + "primaryColor": "", "secondaryColor": "", - "shape": "rectangle", + "shape": "round-rectangle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23295_2989)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#E7157B\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3422 22.3494L15.8467 20.9061C15.9428 20.8142 15.9969 20.6872 15.9999 20.5553C16.0019 20.4224 15.9518 20.2934 15.8597 20.1985L14.3552 18.6432L13.635 19.3379L14.3112 20.0375H11.9913V21.037H14.2651L13.6481 21.6287L14.3422 22.3494ZM26.3579 22.3534L27.9075 20.9001C28.0067 20.8082 28.0627 20.6792 28.0647 20.5443C28.0668 20.4094 28.0137 20.2784 27.9185 20.1835L26.369 18.6373L25.6608 19.3439L26.3549 20.0375H24.0111V21.037H26.2988L25.6718 21.6247L26.3579 22.3534ZM17.5875 23.3609C18.3388 23.057 19.1621 22.8941 20.0045 22.8941C20.8469 22.8941 21.6702 23.057 22.4215 23.3609C21.7524 21.5898 21.7524 19.3899 22.4215 17.6188C20.919 18.2265 19.09 18.2265 17.5875 17.6188C18.2566 19.3899 18.2566 21.5898 17.5875 23.3609ZM15.6443 25.3409C15.5462 25.2439 15.4971 25.116 15.4971 24.988C15.4971 24.8601 15.5462 24.7322 15.6443 24.6342C17.5845 22.6982 17.5845 18.2824 15.6443 16.3454C15.5462 16.2485 15.4971 16.1205 15.4971 15.9926C15.4971 15.8647 15.5462 15.7367 15.6443 15.6388C15.8397 15.4439 16.1572 15.4439 16.3525 15.6388C17.274 16.5583 18.6052 17.086 20.0045 17.086C21.4048 17.086 22.736 16.5583 23.6575 15.6388C23.8528 15.4439 24.1704 15.4439 24.3657 15.6388C24.4628 15.7367 24.5119 15.8647 24.5119 15.9926C24.5119 16.1205 24.4628 16.2485 24.3657 16.3454C22.4245 18.2824 22.4245 22.6982 24.3657 24.6342C24.4628 24.7322 24.5119 24.8601 24.5119 24.988C24.5119 25.116 24.4628 25.2439 24.3657 25.3409C24.2675 25.4388 24.1393 25.4878 24.0111 25.4878C23.8829 25.4878 23.7547 25.4388 23.6575 25.3409C22.736 24.4213 21.4048 23.8936 20.0045 23.8936C18.6052 23.8936 17.274 24.4213 16.3525 25.3409C16.1572 25.5358 15.8397 25.5358 15.6443 25.3409ZM32.5421 19.4359C32.2366 19.132 31.8369 18.9801 31.4363 18.9801C31.0366 18.9801 30.637 19.132 30.3315 19.4359C29.7215 20.0445 29.7215 21.034 30.3315 21.6417C30.9415 22.2504 31.9321 22.2504 32.5421 21.6417C33.1511 21.034 33.1511 20.0445 32.5421 19.4359ZM33.2503 22.3494C32.7504 22.8481 32.0934 23.098 31.4363 23.098C30.7802 23.098 30.1231 22.8481 29.6233 22.3494C28.6237 21.3509 28.6237 19.7277 29.6233 18.7292C30.623 17.7317 32.2506 17.7317 33.2503 18.7292C34.2499 19.7277 34.2499 21.3509 33.2503 22.3494ZM9.66853 19.4468C9.36302 19.143 8.96337 18.9911 8.56271 18.9911C8.16305 18.9911 7.7634 19.143 7.4579 19.4468C6.84889 20.0555 6.84889 21.045 7.4579 21.6527C8.0679 22.2614 9.05852 22.2614 9.66853 21.6527C10.2775 21.045 10.2775 20.0555 9.66853 19.4468ZM10.3767 22.3594C9.87687 22.8581 9.21979 23.108 8.56271 23.108C7.90663 23.108 7.24955 22.8581 6.74973 22.3594C5.75009 21.3619 5.75009 19.7387 6.74973 18.7402C7.74937 17.7427 9.37705 17.7427 10.3767 18.7402C11.3763 19.7387 11.3763 21.3619 10.3767 22.3594ZM27.4337 28.9101C25.4364 30.9031 22.7821 32.0005 19.9574 32.0005C17.1328 32.0005 14.4784 30.9031 12.4821 28.9101C11.166 27.5977 10.4077 26.4693 9.94498 25.136L8.99843 25.4628C9.50726 26.9291 10.3627 28.2104 11.774 29.6167C13.9586 31.7986 16.8664 33 19.9574 33C23.0495 33 25.9563 31.7986 28.1419 29.6167C29.2828 28.4783 30.4206 27.1869 31.0116 25.4608L30.064 25.138C29.5392 26.6702 28.4894 27.8566 27.4337 28.9101ZM9.94498 15.8597L8.99843 15.5318C9.51027 14.0646 10.3657 12.7832 11.776 11.3759C16.2864 6.87519 23.6265 6.87419 28.1379 11.3759C29.2186 12.4534 30.4036 13.7897 31.0116 15.5318L30.064 15.8597C29.5241 14.3094 28.4293 13.0801 27.4297 12.0826C25.4344 10.0916 22.7811 8.99612 19.9574 8.99612C17.1338 8.99612 14.4804 10.0916 12.4852 12.0826C11.187 13.3779 10.4037 14.5423 9.94498 15.8597Z\" fill=\"#E7157B\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#E7157B\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23295_2989\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3422051,22.3493786 L15.8466767,20.9061074 C15.9428347,20.8141539 15.9969235,20.687218 15.9999285,20.5552846 C16.0019317,20.4223517 15.9518495,20.2934168 15.8596981,20.1984648 L14.3552264,18.6432502 L13.6350433,19.3378994 L14.311154,20.037546 L11.9913429,20.037546 L11.9913429,21.0370413 L14.2650783,21.0370413 L13.6480647,21.6287425 L14.3422051,22.3493786 Z M26.3579452,22.3533765 L27.9074909,20.9001104 C28.0066538,20.8081569 28.0627459,20.679222 28.0647492,20.5442901 C28.0667525,20.4093583 28.0136653,20.2784244 27.918509,20.1834724 L26.3689633,18.6372532 L25.6607999,19.3438963 L26.3549403,20.037546 L24.0110896,20.037546 L24.0110896,21.0370413 L26.2988481,21.0370413 L25.671818,21.6247445 L26.3579452,22.3533765 Z M17.5875367,23.3608678 C18.3387708,23.0570212 19.1621235,22.8941035 20.0045074,22.8941035 C20.8468913,22.8941035 21.670244,23.0570212 22.4214781,23.3608678 C21.7523789,21.5897622 21.7523789,19.3898731 22.4214781,17.6187675 C20.9190098,18.2264606 19.090005,18.2264606 17.5875367,17.6187675 C18.2566359,19.3898731 18.2566359,21.5897622 17.5875367,23.3608678 L17.5875367,23.3608678 Z M15.6443443,25.3408679 C15.546183,25.2439168 15.4971024,25.1159814 15.4971024,24.988046 C15.4971024,24.8601106 15.546183,24.7321753 15.6443443,24.6342247 C17.5845317,22.6982024 17.5845317,18.2824324 15.6443443,16.3454106 C15.546183,16.2484595 15.4971024,16.1205241 15.4971024,15.9925912 C15.4971024,15.8646534 15.546183,15.736718 15.6443443,15.6387674 C15.8396652,15.4438659 16.1571868,15.4438659 16.3525077,15.6387674 C17.2740216,16.5583031 18.6052086,17.0860366 20.0045074,17.0860366 C21.4048079,17.0860366 22.7359948,16.5583031 23.6575088,15.6387674 C23.8528296,15.4438659 24.1703513,15.4438659 24.3656722,15.6387674 C24.4628318,15.736718 24.5119124,15.8646534 24.5119124,15.9925912 C24.5119124,16.1205241 24.4628318,16.2484595 24.3656722,16.3454106 C22.4244831,18.2824324 22.4244831,22.6982024 24.3656722,24.6342247 C24.4628318,24.7321753 24.5119124,24.8601106 24.5119124,24.988046 C24.5119124,25.1159814 24.4628318,25.2439168 24.3656722,25.3408679 C24.2675109,25.4388184 24.1393003,25.4877937 24.0110896,25.4877937 C23.882879,25.4877937 23.7546684,25.4388184 23.6575088,25.3408679 C22.7359948,24.4213322 21.4048079,23.8935987 20.0045074,23.8935987 C18.6052086,23.8935987 17.2740216,24.4213322 16.3525077,25.3408679 C16.1571868,25.5357694 15.8396652,25.5357694 15.6443443,25.3408679 L15.6443443,25.3408679 Z M32.5421049,19.4358499 C32.236603,19.1320033 31.8369464,18.9800801 31.4362882,18.9800801 C31.0366316,18.9800801 30.636975,19.1320033 30.3314731,19.4358499 C29.721471,20.0445425 29.721471,21.0340428 30.3314731,21.6417359 C30.9414753,22.2504285 31.9321027,22.2504285 32.5421049,21.6417359 C33.1511054,21.0340428 33.1511054,20.0445425 32.5421049,19.4358499 L32.5421049,19.4358499 Z M33.2502683,22.3493786 C32.7504472,22.8481267 32.0933677,23.0980005 31.4362882,23.0980005 C30.7802103,23.0980005 30.1231309,22.8481267 29.6233097,22.3493786 C28.6236675,21.3508828 28.6236675,19.7277025 29.6233097,18.7292068 C30.622952,17.7317105 32.250626,17.7317105 33.2502683,18.7292068 C34.2499106,19.7277025 34.2499106,21.3508828 33.2502683,22.3493786 L33.2502683,22.3493786 Z M9.66852687,19.4468443 C9.36302497,19.1429978 8.96336839,18.9910745 8.56271017,18.9910745 C8.16305359,18.9910745 7.76339701,19.1429978 7.45789511,19.4468443 C6.84889461,20.055537 6.84889461,21.0450373 7.45789511,21.6527304 C8.06789726,22.261423 9.05852472,22.261423 9.66852687,21.6527304 C10.2775274,21.0450373 10.2775274,20.055537 9.66852687,19.4468443 L9.66852687,19.4468443 Z M10.3766903,22.3593735 C9.87686914,22.8581217 9.21978965,23.1079955 8.56271017,23.1079955 C7.90663232,23.1079955 7.24955284,22.8581217 6.7497317,22.3593735 C5.75008943,21.3618773 5.75008943,19.738697 6.7497317,18.7402012 C7.74937397,17.7427049 9.37704801,17.7427049 10.3766903,18.7402012 C11.3763325,19.738697 11.3763325,21.3618773 10.3766903,22.3593735 L10.3766903,22.3593735 Z M27.4337125,28.9100654 C25.4364313,30.903059 22.7820705,32.0005047 19.9574301,32.0005047 C17.1327896,32.0005047 14.4784288,30.903059 12.4821492,28.9100654 C11.165987,27.5977281 10.4077413,26.469298 9.94498104,25.1359713 L8.99842599,25.4628063 C9.50726193,26.9290658 10.3626672,28.2104187 11.7739858,29.6167086 C13.9585748,31.7986067 16.8663519,33 19.9574301,33 C23.0495099,33 25.9562853,31.7986067 28.1418759,29.6167086 C29.2827502,28.4782835 30.4206196,27.1869356 31.0115905,25.4608073 L30.0640338,25.1379703 C29.5391715,26.6701966 28.4894469,27.8565974 27.4337125,28.9100654 L27.4337125,28.9100654 Z M9.94498104,15.8596559 L8.99842599,15.5318214 C9.51026687,14.0645624 10.3656722,12.7832095 11.7759891,11.3759202 C16.2863991,6.87519304 23.6264578,6.87419354 28.1378694,11.3759202 C29.2186449,12.4533761 30.4035916,13.7897012 31.0115905,15.5318214 L30.0640338,15.8596559 C29.5241468,14.3094387 28.4293482,13.0800596 27.4297059,12.0825633 C25.434428,10.0915688 22.7810689,8.99612197 19.9574301,8.99612197 C17.1337912,8.99612197 14.4804321,10.0915688 12.4851542,12.0825633 C11.1870215,13.3779092 10.4037347,14.5423211 9.94498104,15.8596559 L9.94498104,15.8596559 Z\" id=\"AWS-Simple-Queue-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json index ea6d4bf8cbc..1447b19907b 100644 --- a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#E7157B", + "primaryColor": "", "secondaryColor": "", - "shape": "rectangle", + "shape": "round-rectangle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23295_2989)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#E7157B\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3422 22.3494L15.8467 20.9061C15.9428 20.8142 15.9969 20.6872 15.9999 20.5553C16.0019 20.4224 15.9518 20.2934 15.8597 20.1985L14.3552 18.6432L13.635 19.3379L14.3112 20.0375H11.9913V21.037H14.2651L13.6481 21.6287L14.3422 22.3494ZM26.3579 22.3534L27.9075 20.9001C28.0067 20.8082 28.0627 20.6792 28.0647 20.5443C28.0668 20.4094 28.0137 20.2784 27.9185 20.1835L26.369 18.6373L25.6608 19.3439L26.3549 20.0375H24.0111V21.037H26.2988L25.6718 21.6247L26.3579 22.3534ZM17.5875 23.3609C18.3388 23.057 19.1621 22.8941 20.0045 22.8941C20.8469 22.8941 21.6702 23.057 22.4215 23.3609C21.7524 21.5898 21.7524 19.3899 22.4215 17.6188C20.919 18.2265 19.09 18.2265 17.5875 17.6188C18.2566 19.3899 18.2566 21.5898 17.5875 23.3609ZM15.6443 25.3409C15.5462 25.2439 15.4971 25.116 15.4971 24.988C15.4971 24.8601 15.5462 24.7322 15.6443 24.6342C17.5845 22.6982 17.5845 18.2824 15.6443 16.3454C15.5462 16.2485 15.4971 16.1205 15.4971 15.9926C15.4971 15.8647 15.5462 15.7367 15.6443 15.6388C15.8397 15.4439 16.1572 15.4439 16.3525 15.6388C17.274 16.5583 18.6052 17.086 20.0045 17.086C21.4048 17.086 22.736 16.5583 23.6575 15.6388C23.8528 15.4439 24.1704 15.4439 24.3657 15.6388C24.4628 15.7367 24.5119 15.8647 24.5119 15.9926C24.5119 16.1205 24.4628 16.2485 24.3657 16.3454C22.4245 18.2824 22.4245 22.6982 24.3657 24.6342C24.4628 24.7322 24.5119 24.8601 24.5119 24.988C24.5119 25.116 24.4628 25.2439 24.3657 25.3409C24.2675 25.4388 24.1393 25.4878 24.0111 25.4878C23.8829 25.4878 23.7547 25.4388 23.6575 25.3409C22.736 24.4213 21.4048 23.8936 20.0045 23.8936C18.6052 23.8936 17.274 24.4213 16.3525 25.3409C16.1572 25.5358 15.8397 25.5358 15.6443 25.3409ZM32.5421 19.4359C32.2366 19.132 31.8369 18.9801 31.4363 18.9801C31.0366 18.9801 30.637 19.132 30.3315 19.4359C29.7215 20.0445 29.7215 21.034 30.3315 21.6417C30.9415 22.2504 31.9321 22.2504 32.5421 21.6417C33.1511 21.034 33.1511 20.0445 32.5421 19.4359ZM33.2503 22.3494C32.7504 22.8481 32.0934 23.098 31.4363 23.098C30.7802 23.098 30.1231 22.8481 29.6233 22.3494C28.6237 21.3509 28.6237 19.7277 29.6233 18.7292C30.623 17.7317 32.2506 17.7317 33.2503 18.7292C34.2499 19.7277 34.2499 21.3509 33.2503 22.3494ZM9.66853 19.4468C9.36302 19.143 8.96337 18.9911 8.56271 18.9911C8.16305 18.9911 7.7634 19.143 7.4579 19.4468C6.84889 20.0555 6.84889 21.045 7.4579 21.6527C8.0679 22.2614 9.05852 22.2614 9.66853 21.6527C10.2775 21.045 10.2775 20.0555 9.66853 19.4468ZM10.3767 22.3594C9.87687 22.8581 9.21979 23.108 8.56271 23.108C7.90663 23.108 7.24955 22.8581 6.74973 22.3594C5.75009 21.3619 5.75009 19.7387 6.74973 18.7402C7.74937 17.7427 9.37705 17.7427 10.3767 18.7402C11.3763 19.7387 11.3763 21.3619 10.3767 22.3594ZM27.4337 28.9101C25.4364 30.9031 22.7821 32.0005 19.9574 32.0005C17.1328 32.0005 14.4784 30.9031 12.4821 28.9101C11.166 27.5977 10.4077 26.4693 9.94498 25.136L8.99843 25.4628C9.50726 26.9291 10.3627 28.2104 11.774 29.6167C13.9586 31.7986 16.8664 33 19.9574 33C23.0495 33 25.9563 31.7986 28.1419 29.6167C29.2828 28.4783 30.4206 27.1869 31.0116 25.4608L30.064 25.138C29.5392 26.6702 28.4894 27.8566 27.4337 28.9101ZM9.94498 15.8597L8.99843 15.5318C9.51027 14.0646 10.3657 12.7832 11.776 11.3759C16.2864 6.87519 23.6265 6.87419 28.1379 11.3759C29.2186 12.4534 30.4036 13.7897 31.0116 15.5318L30.064 15.8597C29.5241 14.3094 28.4293 13.0801 27.4297 12.0826C25.4344 10.0916 22.7811 8.99612 19.9574 8.99612C17.1338 8.99612 14.4804 10.0916 12.4852 12.0826C11.187 13.3779 10.4037 14.5423 9.94498 15.8597Z\" fill=\"#E7157B\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#E7157B\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23295_2989\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3422051,22.3493786 L15.8466767,20.9061074 C15.9428347,20.8141539 15.9969235,20.687218 15.9999285,20.5552846 C16.0019317,20.4223517 15.9518495,20.2934168 15.8596981,20.1984648 L14.3552264,18.6432502 L13.6350433,19.3378994 L14.311154,20.037546 L11.9913429,20.037546 L11.9913429,21.0370413 L14.2650783,21.0370413 L13.6480647,21.6287425 L14.3422051,22.3493786 Z M26.3579452,22.3533765 L27.9074909,20.9001104 C28.0066538,20.8081569 28.0627459,20.679222 28.0647492,20.5442901 C28.0667525,20.4093583 28.0136653,20.2784244 27.918509,20.1834724 L26.3689633,18.6372532 L25.6607999,19.3438963 L26.3549403,20.037546 L24.0110896,20.037546 L24.0110896,21.0370413 L26.2988481,21.0370413 L25.671818,21.6247445 L26.3579452,22.3533765 Z M17.5875367,23.3608678 C18.3387708,23.0570212 19.1621235,22.8941035 20.0045074,22.8941035 C20.8468913,22.8941035 21.670244,23.0570212 22.4214781,23.3608678 C21.7523789,21.5897622 21.7523789,19.3898731 22.4214781,17.6187675 C20.9190098,18.2264606 19.090005,18.2264606 17.5875367,17.6187675 C18.2566359,19.3898731 18.2566359,21.5897622 17.5875367,23.3608678 L17.5875367,23.3608678 Z M15.6443443,25.3408679 C15.546183,25.2439168 15.4971024,25.1159814 15.4971024,24.988046 C15.4971024,24.8601106 15.546183,24.7321753 15.6443443,24.6342247 C17.5845317,22.6982024 17.5845317,18.2824324 15.6443443,16.3454106 C15.546183,16.2484595 15.4971024,16.1205241 15.4971024,15.9925912 C15.4971024,15.8646534 15.546183,15.736718 15.6443443,15.6387674 C15.8396652,15.4438659 16.1571868,15.4438659 16.3525077,15.6387674 C17.2740216,16.5583031 18.6052086,17.0860366 20.0045074,17.0860366 C21.4048079,17.0860366 22.7359948,16.5583031 23.6575088,15.6387674 C23.8528296,15.4438659 24.1703513,15.4438659 24.3656722,15.6387674 C24.4628318,15.736718 24.5119124,15.8646534 24.5119124,15.9925912 C24.5119124,16.1205241 24.4628318,16.2484595 24.3656722,16.3454106 C22.4244831,18.2824324 22.4244831,22.6982024 24.3656722,24.6342247 C24.4628318,24.7321753 24.5119124,24.8601106 24.5119124,24.988046 C24.5119124,25.1159814 24.4628318,25.2439168 24.3656722,25.3408679 C24.2675109,25.4388184 24.1393003,25.4877937 24.0110896,25.4877937 C23.882879,25.4877937 23.7546684,25.4388184 23.6575088,25.3408679 C22.7359948,24.4213322 21.4048079,23.8935987 20.0045074,23.8935987 C18.6052086,23.8935987 17.2740216,24.4213322 16.3525077,25.3408679 C16.1571868,25.5357694 15.8396652,25.5357694 15.6443443,25.3408679 L15.6443443,25.3408679 Z M32.5421049,19.4358499 C32.236603,19.1320033 31.8369464,18.9800801 31.4362882,18.9800801 C31.0366316,18.9800801 30.636975,19.1320033 30.3314731,19.4358499 C29.721471,20.0445425 29.721471,21.0340428 30.3314731,21.6417359 C30.9414753,22.2504285 31.9321027,22.2504285 32.5421049,21.6417359 C33.1511054,21.0340428 33.1511054,20.0445425 32.5421049,19.4358499 L32.5421049,19.4358499 Z M33.2502683,22.3493786 C32.7504472,22.8481267 32.0933677,23.0980005 31.4362882,23.0980005 C30.7802103,23.0980005 30.1231309,22.8481267 29.6233097,22.3493786 C28.6236675,21.3508828 28.6236675,19.7277025 29.6233097,18.7292068 C30.622952,17.7317105 32.250626,17.7317105 33.2502683,18.7292068 C34.2499106,19.7277025 34.2499106,21.3508828 33.2502683,22.3493786 L33.2502683,22.3493786 Z M9.66852687,19.4468443 C9.36302497,19.1429978 8.96336839,18.9910745 8.56271017,18.9910745 C8.16305359,18.9910745 7.76339701,19.1429978 7.45789511,19.4468443 C6.84889461,20.055537 6.84889461,21.0450373 7.45789511,21.6527304 C8.06789726,22.261423 9.05852472,22.261423 9.66852687,21.6527304 C10.2775274,21.0450373 10.2775274,20.055537 9.66852687,19.4468443 L9.66852687,19.4468443 Z M10.3766903,22.3593735 C9.87686914,22.8581217 9.21978965,23.1079955 8.56271017,23.1079955 C7.90663232,23.1079955 7.24955284,22.8581217 6.7497317,22.3593735 C5.75008943,21.3618773 5.75008943,19.738697 6.7497317,18.7402012 C7.74937397,17.7427049 9.37704801,17.7427049 10.3766903,18.7402012 C11.3763325,19.738697 11.3763325,21.3618773 10.3766903,22.3593735 L10.3766903,22.3593735 Z M27.4337125,28.9100654 C25.4364313,30.903059 22.7820705,32.0005047 19.9574301,32.0005047 C17.1327896,32.0005047 14.4784288,30.903059 12.4821492,28.9100654 C11.165987,27.5977281 10.4077413,26.469298 9.94498104,25.1359713 L8.99842599,25.4628063 C9.50726193,26.9290658 10.3626672,28.2104187 11.7739858,29.6167086 C13.9585748,31.7986067 16.8663519,33 19.9574301,33 C23.0495099,33 25.9562853,31.7986067 28.1418759,29.6167086 C29.2827502,28.4782835 30.4206196,27.1869356 31.0115905,25.4608073 L30.0640338,25.1379703 C29.5391715,26.6701966 28.4894469,27.8565974 27.4337125,28.9100654 L27.4337125,28.9100654 Z M9.94498104,15.8596559 L8.99842599,15.5318214 C9.51026687,14.0645624 10.3656722,12.7832095 11.7759891,11.3759202 C16.2863991,6.87519304 23.6264578,6.87419354 28.1378694,11.3759202 C29.2186449,12.4533761 30.4035916,13.7897012 31.0115905,15.5318214 L30.0640338,15.8596559 C29.5241468,14.3094387 28.4293482,13.0800596 27.4297059,12.0825633 C25.434428,10.0915688 22.7810689,8.99612197 19.9574301,8.99612197 C17.1337912,8.99612197 14.4804321,10.0915688 12.4851542,12.0825633 C11.1870215,13.3779092 10.4037347,14.5423211 9.94498104,15.8596559 L9.94498104,15.8596559 Z\" id=\"AWS-Simple-Queue-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json index db9d8e8ee4f..49ee060c305 100644 --- a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json +++ b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#E7157B", + "primaryColor": "", "secondaryColor": "", - "shape": "rectangle", + "shape": "round-rectangle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23295_2989)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#E7157B\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3422 22.3494L15.8467 20.9061C15.9428 20.8142 15.9969 20.6872 15.9999 20.5553C16.0019 20.4224 15.9518 20.2934 15.8597 20.1985L14.3552 18.6432L13.635 19.3379L14.3112 20.0375H11.9913V21.037H14.2651L13.6481 21.6287L14.3422 22.3494ZM26.3579 22.3534L27.9075 20.9001C28.0067 20.8082 28.0627 20.6792 28.0647 20.5443C28.0668 20.4094 28.0137 20.2784 27.9185 20.1835L26.369 18.6373L25.6608 19.3439L26.3549 20.0375H24.0111V21.037H26.2988L25.6718 21.6247L26.3579 22.3534ZM17.5875 23.3609C18.3388 23.057 19.1621 22.8941 20.0045 22.8941C20.8469 22.8941 21.6702 23.057 22.4215 23.3609C21.7524 21.5898 21.7524 19.3899 22.4215 17.6188C20.919 18.2265 19.09 18.2265 17.5875 17.6188C18.2566 19.3899 18.2566 21.5898 17.5875 23.3609ZM15.6443 25.3409C15.5462 25.2439 15.4971 25.116 15.4971 24.988C15.4971 24.8601 15.5462 24.7322 15.6443 24.6342C17.5845 22.6982 17.5845 18.2824 15.6443 16.3454C15.5462 16.2485 15.4971 16.1205 15.4971 15.9926C15.4971 15.8647 15.5462 15.7367 15.6443 15.6388C15.8397 15.4439 16.1572 15.4439 16.3525 15.6388C17.274 16.5583 18.6052 17.086 20.0045 17.086C21.4048 17.086 22.736 16.5583 23.6575 15.6388C23.8528 15.4439 24.1704 15.4439 24.3657 15.6388C24.4628 15.7367 24.5119 15.8647 24.5119 15.9926C24.5119 16.1205 24.4628 16.2485 24.3657 16.3454C22.4245 18.2824 22.4245 22.6982 24.3657 24.6342C24.4628 24.7322 24.5119 24.8601 24.5119 24.988C24.5119 25.116 24.4628 25.2439 24.3657 25.3409C24.2675 25.4388 24.1393 25.4878 24.0111 25.4878C23.8829 25.4878 23.7547 25.4388 23.6575 25.3409C22.736 24.4213 21.4048 23.8936 20.0045 23.8936C18.6052 23.8936 17.274 24.4213 16.3525 25.3409C16.1572 25.5358 15.8397 25.5358 15.6443 25.3409ZM32.5421 19.4359C32.2366 19.132 31.8369 18.9801 31.4363 18.9801C31.0366 18.9801 30.637 19.132 30.3315 19.4359C29.7215 20.0445 29.7215 21.034 30.3315 21.6417C30.9415 22.2504 31.9321 22.2504 32.5421 21.6417C33.1511 21.034 33.1511 20.0445 32.5421 19.4359ZM33.2503 22.3494C32.7504 22.8481 32.0934 23.098 31.4363 23.098C30.7802 23.098 30.1231 22.8481 29.6233 22.3494C28.6237 21.3509 28.6237 19.7277 29.6233 18.7292C30.623 17.7317 32.2506 17.7317 33.2503 18.7292C34.2499 19.7277 34.2499 21.3509 33.2503 22.3494ZM9.66853 19.4468C9.36302 19.143 8.96337 18.9911 8.56271 18.9911C8.16305 18.9911 7.7634 19.143 7.4579 19.4468C6.84889 20.0555 6.84889 21.045 7.4579 21.6527C8.0679 22.2614 9.05852 22.2614 9.66853 21.6527C10.2775 21.045 10.2775 20.0555 9.66853 19.4468ZM10.3767 22.3594C9.87687 22.8581 9.21979 23.108 8.56271 23.108C7.90663 23.108 7.24955 22.8581 6.74973 22.3594C5.75009 21.3619 5.75009 19.7387 6.74973 18.7402C7.74937 17.7427 9.37705 17.7427 10.3767 18.7402C11.3763 19.7387 11.3763 21.3619 10.3767 22.3594ZM27.4337 28.9101C25.4364 30.9031 22.7821 32.0005 19.9574 32.0005C17.1328 32.0005 14.4784 30.9031 12.4821 28.9101C11.166 27.5977 10.4077 26.4693 9.94498 25.136L8.99843 25.4628C9.50726 26.9291 10.3627 28.2104 11.774 29.6167C13.9586 31.7986 16.8664 33 19.9574 33C23.0495 33 25.9563 31.7986 28.1419 29.6167C29.2828 28.4783 30.4206 27.1869 31.0116 25.4608L30.064 25.138C29.5392 26.6702 28.4894 27.8566 27.4337 28.9101ZM9.94498 15.8597L8.99843 15.5318C9.51027 14.0646 10.3657 12.7832 11.776 11.3759C16.2864 6.87519 23.6265 6.87419 28.1379 11.3759C29.2186 12.4534 30.4036 13.7897 31.0116 15.5318L30.064 15.8597C29.5241 14.3094 28.4293 13.0801 27.4297 12.0826C25.4344 10.0916 22.7811 8.99612 19.9574 8.99612C17.1338 8.99612 14.4804 10.0916 12.4852 12.0826C11.187 13.3779 10.4037 14.5423 9.94498 15.8597Z\" fill=\"#E7157B\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#E7157B\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23295_2989\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3422051,22.3493786 L15.8466767,20.9061074 C15.9428347,20.8141539 15.9969235,20.687218 15.9999285,20.5552846 C16.0019317,20.4223517 15.9518495,20.2934168 15.8596981,20.1984648 L14.3552264,18.6432502 L13.6350433,19.3378994 L14.311154,20.037546 L11.9913429,20.037546 L11.9913429,21.0370413 L14.2650783,21.0370413 L13.6480647,21.6287425 L14.3422051,22.3493786 Z M26.3579452,22.3533765 L27.9074909,20.9001104 C28.0066538,20.8081569 28.0627459,20.679222 28.0647492,20.5442901 C28.0667525,20.4093583 28.0136653,20.2784244 27.918509,20.1834724 L26.3689633,18.6372532 L25.6607999,19.3438963 L26.3549403,20.037546 L24.0110896,20.037546 L24.0110896,21.0370413 L26.2988481,21.0370413 L25.671818,21.6247445 L26.3579452,22.3533765 Z M17.5875367,23.3608678 C18.3387708,23.0570212 19.1621235,22.8941035 20.0045074,22.8941035 C20.8468913,22.8941035 21.670244,23.0570212 22.4214781,23.3608678 C21.7523789,21.5897622 21.7523789,19.3898731 22.4214781,17.6187675 C20.9190098,18.2264606 19.090005,18.2264606 17.5875367,17.6187675 C18.2566359,19.3898731 18.2566359,21.5897622 17.5875367,23.3608678 L17.5875367,23.3608678 Z M15.6443443,25.3408679 C15.546183,25.2439168 15.4971024,25.1159814 15.4971024,24.988046 C15.4971024,24.8601106 15.546183,24.7321753 15.6443443,24.6342247 C17.5845317,22.6982024 17.5845317,18.2824324 15.6443443,16.3454106 C15.546183,16.2484595 15.4971024,16.1205241 15.4971024,15.9925912 C15.4971024,15.8646534 15.546183,15.736718 15.6443443,15.6387674 C15.8396652,15.4438659 16.1571868,15.4438659 16.3525077,15.6387674 C17.2740216,16.5583031 18.6052086,17.0860366 20.0045074,17.0860366 C21.4048079,17.0860366 22.7359948,16.5583031 23.6575088,15.6387674 C23.8528296,15.4438659 24.1703513,15.4438659 24.3656722,15.6387674 C24.4628318,15.736718 24.5119124,15.8646534 24.5119124,15.9925912 C24.5119124,16.1205241 24.4628318,16.2484595 24.3656722,16.3454106 C22.4244831,18.2824324 22.4244831,22.6982024 24.3656722,24.6342247 C24.4628318,24.7321753 24.5119124,24.8601106 24.5119124,24.988046 C24.5119124,25.1159814 24.4628318,25.2439168 24.3656722,25.3408679 C24.2675109,25.4388184 24.1393003,25.4877937 24.0110896,25.4877937 C23.882879,25.4877937 23.7546684,25.4388184 23.6575088,25.3408679 C22.7359948,24.4213322 21.4048079,23.8935987 20.0045074,23.8935987 C18.6052086,23.8935987 17.2740216,24.4213322 16.3525077,25.3408679 C16.1571868,25.5357694 15.8396652,25.5357694 15.6443443,25.3408679 L15.6443443,25.3408679 Z M32.5421049,19.4358499 C32.236603,19.1320033 31.8369464,18.9800801 31.4362882,18.9800801 C31.0366316,18.9800801 30.636975,19.1320033 30.3314731,19.4358499 C29.721471,20.0445425 29.721471,21.0340428 30.3314731,21.6417359 C30.9414753,22.2504285 31.9321027,22.2504285 32.5421049,21.6417359 C33.1511054,21.0340428 33.1511054,20.0445425 32.5421049,19.4358499 L32.5421049,19.4358499 Z M33.2502683,22.3493786 C32.7504472,22.8481267 32.0933677,23.0980005 31.4362882,23.0980005 C30.7802103,23.0980005 30.1231309,22.8481267 29.6233097,22.3493786 C28.6236675,21.3508828 28.6236675,19.7277025 29.6233097,18.7292068 C30.622952,17.7317105 32.250626,17.7317105 33.2502683,18.7292068 C34.2499106,19.7277025 34.2499106,21.3508828 33.2502683,22.3493786 L33.2502683,22.3493786 Z M9.66852687,19.4468443 C9.36302497,19.1429978 8.96336839,18.9910745 8.56271017,18.9910745 C8.16305359,18.9910745 7.76339701,19.1429978 7.45789511,19.4468443 C6.84889461,20.055537 6.84889461,21.0450373 7.45789511,21.6527304 C8.06789726,22.261423 9.05852472,22.261423 9.66852687,21.6527304 C10.2775274,21.0450373 10.2775274,20.055537 9.66852687,19.4468443 L9.66852687,19.4468443 Z M10.3766903,22.3593735 C9.87686914,22.8581217 9.21978965,23.1079955 8.56271017,23.1079955 C7.90663232,23.1079955 7.24955284,22.8581217 6.7497317,22.3593735 C5.75008943,21.3618773 5.75008943,19.738697 6.7497317,18.7402012 C7.74937397,17.7427049 9.37704801,17.7427049 10.3766903,18.7402012 C11.3763325,19.738697 11.3763325,21.3618773 10.3766903,22.3593735 L10.3766903,22.3593735 Z M27.4337125,28.9100654 C25.4364313,30.903059 22.7820705,32.0005047 19.9574301,32.0005047 C17.1327896,32.0005047 14.4784288,30.903059 12.4821492,28.9100654 C11.165987,27.5977281 10.4077413,26.469298 9.94498104,25.1359713 L8.99842599,25.4628063 C9.50726193,26.9290658 10.3626672,28.2104187 11.7739858,29.6167086 C13.9585748,31.7986067 16.8663519,33 19.9574301,33 C23.0495099,33 25.9562853,31.7986067 28.1418759,29.6167086 C29.2827502,28.4782835 30.4206196,27.1869356 31.0115905,25.4608073 L30.0640338,25.1379703 C29.5391715,26.6701966 28.4894469,27.8565974 27.4337125,28.9100654 L27.4337125,28.9100654 Z M9.94498104,15.8596559 L8.99842599,15.5318214 C9.51026687,14.0645624 10.3656722,12.7832095 11.7759891,11.3759202 C16.2863991,6.87519304 23.6264578,6.87419354 28.1378694,11.3759202 C29.2186449,12.4533761 30.4035916,13.7897012 31.0115905,15.5318214 L30.0640338,15.8596559 C29.5241468,14.3094387 28.4293482,13.0800596 27.4297059,12.0825633 C25.434428,10.0915688 22.7810689,8.99612197 19.9574301,8.99612197 C17.1337912,8.99612197 14.4804321,10.0915688 12.4851542,12.0825633 C11.1870215,13.3779092 10.4037347,14.5423211 9.94498104,15.8596559 L9.94498104,15.8596559 Z\" id=\"AWS-Simple-Queue-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Queue", diff --git a/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json b/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json index bedfef57be9..18c8c23e895 100644 --- a/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json +++ b/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#252F3E;stroke:#fff;stroke-width:2;}\n .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\" width='304' height='182'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "TargetGroupBinding", diff --git a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json index 1a47246f33b..3777e3efb9c 100644 --- a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json +++ b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#252F3E;stroke:#fff;stroke-width:2;}\n .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\" width='304' height='182'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ENIConfig", diff --git a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json index 3b49f73828f..d943d793879 100644 --- a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json +++ b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\" width='304' height='182'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PolicyEndpoint", diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json index 0787bcc341d..31eec5a8a35 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#e00000", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\" width='255.1' height='255.1'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWX", diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json index 38b3c9379c0..f1c5c3d7607 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#e00000", - "secondaryColor": "#F4BC79", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\" width='255.1' height='255.1'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWXBackup", diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json index 379312799a6..dd7c19c97cb 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#e00000", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json index 15abd172a7d..7bea2996520 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#e00000", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\" width='255.1' height='255.1'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWXRestore", diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json index f0fd1602f39..8f6fb8b22b4 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json index 451344fec1b..d6a8b68d23e 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json index 463fc6f876b..c14efa51487 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json index 183c6382213..914de435b8b 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json index 85211963592..5aeb2632439 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json index 776cdb76067..7adff2d6924 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json index bd814a4773a..673dcc74cf5 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json index d9266f482f0..f1a0ca8944f 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json index 76951512604..351b4a01349 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json index 85234955119..1566521585b 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json index 03b4e9a6bec..bb72d674419 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json index 59e8c8ee73f..c29543b276c 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json index 272798c1531..040f1e396ad 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json index 96b5fffaf76..f7d83f49cd0 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json index b4044b5a0c6..24d78cad071 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json index 5f1914fc8ad..cac8523c0e1 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json index bb8189af844..b0b93486826 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json index 67d6ed4387c..54894e248cd 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json index b535e142a6f..06bdb21379f 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json index 959fd15c35e..132557aec71 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json index e56d7a9367b..330b1e40ede 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json index a1380636eb4..70701db0e7d 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json index 888a7c5892b..f5200783f69 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json index d5d1a674fad..93b18d8c94c 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json index fa44c6aedfa..1c0f7c3234e 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json index 32d9e9a3481..63a0cc8810e 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json index 1dae9f1717b..32b02aead8b 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json index 512bea4ee68..a1860cef359 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json index 8d35b169f44..1435169598e 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json index b45517cffca..8f2c87337a6 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json index c688966bdff..bd741541f36 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json index a85daa51c87..1638f7b7eba 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json index d8e88c2051f..cdd0af3241a 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json b/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json index 4b190b2f74c..33ef056df7f 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AuthorizationPolicy", diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json b/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json index 6d3beb93dd1..0e387ac54ce 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json b/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json index 3cd3d5d050b..2fc6c4e43e8 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json b/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json index ecab80b6a1c..3548dae796d 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json b/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json index 320debc5486..9c21119cbf5 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json b/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json index 7b26690fa1c..eaaf80744d1 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json b/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json index 34b2ef8b704..e87810af297 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "RequestAuthentication", diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json b/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json index b4f2dc61233..59fea39d875 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json b/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json index 7f524a0d0ee..fe848a01260 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json b/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json index a258c2ee22b..ec782d0215f 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json b/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json index 9393b1f7a97..64f411963ac 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json b/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json index 82bc45d9de7..e48ebed9637 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json index 09ed500029b..149686c9f22 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json index e610a6772f8..8118cc7ecb8 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json index 25fd76254cf..294d41f28a7 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "AccountBinding", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json index e320d60b067..37e955a8bc1 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Invite", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json index 16ee9c52f8f..c07ce77b743 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "MySQLDatabase", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json index ec80597aca7..a42d8d80915 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "MySQLUser", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json index 157a0c53ba7..97a04870820 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Project", diff --git a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json index 35dcf3035ae..783b227153d 100644 --- a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json +++ b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json index aafc54c3154..fea8ba3994a 100644 --- a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json +++ b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json index c01c39ab099..15e8a8543c1 100644 --- a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json +++ b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json b/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json index d0bd7f8ab7e..4c939ad7d9d 100644 --- a/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json +++ b/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "BottlerocketShadow", diff --git a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json index 706e2cd29e7..48647078a1f 100644 --- a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json +++ b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Backup", diff --git a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json index 3c06800f502..75b04854799 100644 --- a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json +++ b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Restore", diff --git a/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json b/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json index b5374a80002..3f6faec76d1 100644 --- a/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json +++ b/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Bundle", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json index 1cbb6724440..b832ca3980c 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "CloudProvider", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json index 2afba394291..aa955a9f14b 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json index 6d8846402f9..9d6d37f589e 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json index 475f9215e15..c202a015510 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json index 15df7d7d0ed..cc439c72241 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json index 734db0e46e6..daf85625d94 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "EditorOption", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json index 5a81b903acb..4856f490bbc 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "MachineType", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json index ebb1a7e4b02..6fba91f483b 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "OptionsEditor", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json index 4a0304757cc..65ccd04d1bc 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "OrgUser", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json index 49ad0cc143d..539c00d89e2 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Plan", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json index 7b5e2fd3e06..abb47473a3d 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Product", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json index afed2a0dcdd..bf0758dfb96 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Team", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json index 855b795a18a..d59d082b6de 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "TeamUser", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json index ea357bc23bb..ec349864b61 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" \n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Build", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json index aabc9d25134..574a9e3624f 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CamelCatalog", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json index f4c55c6b320..54a31ab9208 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Integration", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json index 879f9425728..68cbb354ffe 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "IntegrationKit", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json index 6741587afd6..66572c1f9a3 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "IntegrationPlatform", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json index 5c486de7997..b5bb4a8cac9 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Kamelet", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json index 018b9f4be1e..bff8d304b3b 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "KameletBinding", diff --git a/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json b/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json index 7078d12601f..3df22f442aa 100644 --- a/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json +++ b/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Canary", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json index 06afbd73546..7d6ca5062f5 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "CapsuleConfiguration", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json index f4f3947cb1e..f5d331cea5d 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "GlobalTenantResource", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json index 018d02bb2dd..dfbf466065a 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json index cd8ddd3b8e6..44edddaf40d 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Tenant", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json index 8d846cb32ad..0b92b6b2494 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TenantResource", diff --git a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json index 899b3882a8f..bbe3639f1a4 100644 --- a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json +++ b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json index c4f351f764f..068199a752b 100644 --- a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json +++ b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json index 71343ec00f7..ef03ba619cb 100644 --- a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json +++ b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\" width='590.1' height='207.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CDPipeline", diff --git a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json index 82092c7da90..787780fcd4e 100644 --- a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json +++ b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\" width='590.1' height='207.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Stage", diff --git a/server/meshmodel/cert-manager-crds/1.15.0/v1.0.0/model.json b/server/meshmodel/cert-manager-crds/1.15.0/v1.0.0/model.json new file mode 100644 index 00000000000..2f74dcf162e --- /dev/null +++ b/server/meshmodel/cert-manager-crds/1.15.0/v1.0.0/model.json @@ -0,0 +1,37 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "cert-manager-crds", + "displayName": "Cert Manager Crds", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Security \u0026 Compliance", + "metadata": null + }, + "subCategory": "Security \u0026 Compliance", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#215276", + "secondaryColor": "#376384", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 792 792\"\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1, .cls-2 {\n fill: none;\n }\n .cls-2 {\n clip-path: url(#clip-path);\n }\n .cls-3 {\n clip-path: url(#clip-path-2);\n }\n .cls-4 {\n fill: #fff;\n }\n .cls-5 {\n fill: #326ce5;\n }\n .cls-6 {\n mask: url(#mask);\n }\n .cls-7 {\n fill: #fdfdfe;\n }\n \u003c/style\u003e\n \u003cclipPath id=\"clip-path\"\u003e\n \u003cpolygon class=\"cls-1\" points=\"-512.547 -72.522 -511.547 -72.522 -512.547 -71.522 -512.547 -72.522\"/\u003e\n \u003c/clipPath\u003e\n \u003cclipPath id=\"clip-path-2\"\u003e\n \u003cpolygon class=\"cls-2\" points=\"-514.547 -74.522 -515.547 -74.522 -514.547 -75.522 -514.547 -74.522\"/\u003e\n \u003c/clipPath\u003e\n \u003cmask id=\"mask\" x=\"95.45997\" y=\"220.56415\" width=\"1145.07974\" height=\"588.06611\" maskUnits=\"userSpaceOnUse\"\u003e\n \u003cg id=\"mask-2\" data-name=\"mask\"\u003e\n \u003cg id=\"g3823\"\u003e\n \u003cpath id=\"path3819\" d=\"M946.5066,220.56415c-162.388,0-294.033,131.64507-294.033,294.03307s131.645,294.03305,294.03305,294.03305,294.03311-131.66566,294.03311-294.033S1108.89464,220.56415,946.5066,220.56415Zm-.0722,562.49c-148.31081,0-268.35373-120.10486-268.3847-268.41564S798.41233,245.8825,946.816,246.15063s268.28159,120.39361,268.1372,268.65286S1094.72463,783.09541,946.4344,783.05412Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/mask\u003e\n \u003c/defs\u003e\n \u003cg id=\"Text\"\u003e\n \u003cg class=\"cls-3\"\u003e\n \u003cg id=\"g3878\"\u003e\n \u003cg id=\"Text_and_detail\" data-name=\"Text and detail\"\u003e\n \u003cpath id=\"Circle\" class=\"cls-4\" d=\"M382.15266,82.87846c-172.4,0-312.16,139.76-312.16,312.16,0,172.4,139.76,312.16,312.16,312.16s312.16-139.72,312.16-312.16-139.76-312.16-312.16-312.16Zm-.08,597.15994c-157.44,0-284.89-127.51-284.92-284.95,0-157.61,127.78-285.3,285.33-285,157.55005.3,284.80994,127.8,284.67005,285.22C667.01258,552.7284,539.51258,680.08839,382.07264,680.0384Z\"/\u003e\n \u003cg id=\"LETTERS\"\u003e\n \u003cpath id=\"path3851\" class=\"cls-4\" d=\"M238.15266,536.47846c-1-3.45-5.75-6.88-9.44-6.42-5.24.67-10.46,1.54-16.76,2.48,2.32-6.15,4.28-11.4,6.28-16.65,1.73-4.56-2-6.77-4.34-9.21s-4.17.64-5.76,1.9c-8.47,6.71-16.68,13.75-25.23,20.35-4.06,3.13-1,4.95.64,7.2s3.31,4.78,6.66,1.83c3.86-3.39,7.94-6.54,12-9.83.15.38.29.56.25.68-.8,2.32-1.67,4.62-2.45,6.95-1.63,4.92,1.52,8.51,6.69,7.7,2.15-.34,4.34-1,6.9.1-4.16,3.41-7.77,6.61-11.63,9.46-3.17,2.34-1.65,4.25.26,6s2.71,6.31,6.8,3q13.79-11.12,27.49-22.31C237.45264,538.93842,238.66267,538.21845,238.15266,536.47846Z\"/\u003e\n \u003cpath id=\"path3853\" class=\"cls-4\" d=\"M405.30262,200.08845c6.54,2.7,9.13,1.46,10.48-5.3.3-1.47.57-2.93.93-4.38.29-1.18,0-3.17,1.81-2.92s4.13-.12,4.79,2.58,1.48,5.09,2.22,7.63c2.08,7,3.51,8.09,10.64,8.46,2.68.14,3.28-.77,2.57-3.16-1.12-3.81-2.09-7.67-3.28-11.46-.55-1.73-1-2.75,1.37-3.74,5.78-2.44,7.34-7.68,7.75-13.07,0-6.66-4-11.53-11.48-13.53-6.08-1.62-12.32-2.63-18.48-4-2.3-.5-3.45.43-3.88,2.63-2.36,12-4.76,24.08-7.09,36.14-.31,1.63-.54,3.22,1.65,4.12Zm17.54-31c5.05-.51,9.92,2.41,9.87,5.4s-1.8,4.44-5.19,4.53c-2.09-1.76-6.94,1.1-7.65-3.37-.3-1.89-1-6.11,2.97-6.52Z\"/\u003e\n \u003cpath id=\"path3855\" class=\"cls-4\" d=\"M339.45264,591.29847c-2.84-.93-5.74-2.1-6.74,2.62-1.09,5.19-2.75,10.25-4.47,16.5-2.63-7.82-5.07-14.52-7.1-21.34-1.33-4.46-5.15-4.42-8.37-5-3.55-.58-2.91,3-3.47,5-3,10.36-5.58,20.86-8.8,31.16-1.58,5.08,2.17,4.62,4.67,5.49,2.66.91,5.47,2,6.48-2.4,1.21-5.27,2.82-10.45,4.45-16.34.67,1.54,1.13,2.42,1.44,3.34,2,6,4.09,11.93,6,17.94,1.37,4.44,5.37,4.17,8.56,4.61s2.53-3,3.06-4.81c3-10.38,5.53-20.89,8.8-31.17,1.49-4.98-1.96-4.76-4.51-5.6Z\"/\u003e\n \u003cpath id=\"path3857\" class=\"cls-4\" d=\"M580.31263,528.04847c-3.28-.47-6.51-1.44-9.80005-1.75-2.71-.25-3.39-1.19-3.48-4-.22-7-6.55005-12.74-13.43994-12.82-4.73-.13-8.35,2.24-11.25,5.56-3.61,4.13-6.71,8.7-10.33,12.82-2.46,2.81-2.15,4.55.78,6.76,8.76,6.62,17.44995,13.35,25.93994,20.3,3,2.4,4.51,2.15,6.72-.86,4-5.45,4.16-5.32-1.23-9.5-1.18005-.92-2.42-1.78-3.5-2.81-.83-.79-2.89-1.11-1.73-2.91.93994-1.45,1.75-3.35,4.16-2.86s5,.56,7.32995,1.41c5.37,2,8.71-.09,11.63-4.54,1.93005-2.89,2.03-4.26-1.8-4.8Zm-30,5.43c-.75.06-6.13-4.56-6.08-5.23.13-1.76,6.28-7.65,8-7.65,2.31006.46,4,1.61,4.18994,4.15C556.5326,526.29847,551.45264,533.37849,550.31263,533.47846Z\"/\u003e\n \u003cpath id=\"path3859\" class=\"cls-4\" d=\"M331.71265,201.07847c.35,2,1,3.6,3.49,3.21,9-1.56,18.06-2.91,27-4.77,4.72-1,1.47-4.56,1.52-7,.05-2.61-1.37-3.4-3.93-2.9-4.89.95-9.85,1.6-14.74,2.57-2.54.5-3.21-.66-3.45-2.83-.21-1.93-.49-3.43,2.3-3.74,4.13-.44,8.17-1.61,12.3-2.05,4.47-.48,3.65-3.29,3.17-6.13s-1.08-5.17-5-4.09c-3.67,1-7.56,1.16-11.26,2.09-2.6.66-3.87.5-4.41-2.54-.59-3.28,1.23-3.55,3.55-3.9,4.11-.61,8.2-1.4,12.31-2,2.63-.4,4.65-1.13,3.59-4.44-.85-2.66.36-6.86-5.13-5.72-7.81,1.63-15.68,3-23.58,4-3.78.48-4.3,2.17-3.74,5.31q3.045,17.505,6.01,34.93Z\"/\u003e\n \u003cpath id=\"path3861\" class=\"cls-4\" d=\"M465.13264,596.01844a88.49049,88.49049,0,0,1-8.92,3.07c-2.51.8-4.32,1.82-2.82,5,1.19,2.46.87,6.55,5.62,4.65.87-.35,1.8-1.17,2.65-.11.85,1.06.29,2.32-.13,3.32-1.22,2.87-3.78,4.1-6.65,4.6a6.21878,6.21878,0,0,1-6.67-3.37,32.7898,32.7898,0,0,1-4-11.2c-.93-5.83,4.62-10.93,9.91-8.38,4.36,2.1,7.64.42,11.34-.66,2.53-.74,2.54-2.25,1.08-4.09-3.38-4.26-8-5.61-13.24-5.83a22.67985,22.67985,0,0,0-15,5.6c-5,4.48-7,10.16-5,16.65,2.53,8.49,4,18,14.56,20.8,8.1,2.13,15.24-.38,21-6.12,6.23-6.24,4.72-13.51,2-20.92-1.19-3.16-2.35-4.5-5.73-3.01Z\"/\u003e\n \u003cpath id=\"path3863\" class=\"cls-4\" d=\"M527.1526,577.12849c-3.66,2.86-7.64,5.31-11.31006,8.17-2,1.56-3,1.07-4.29-.81-1.29-1.88-1.69-3,.46-4.41,3.32995-2.19,6.52-4.59,9.76-6.91,1.06006-.76,2.34-1.38,2.22-3.22a13.53972,13.53972,0,0,0-4.18994-5.8c-1.86-1.31-3.30005.69-4.75,1.69-3,2.08-6.14,4-8.94,6.34-2.33,1.94-3,.17-4.15-1.21-1.38-1.61-1.4-2.61.53-3.87,3.75-2.45,7.22-5.33,10.99994-7.71,3.1-1.94,2.43994-3.82.62-6.06-1.61-2-2.59-5-6.15-2.3-6.52,4.86-13.22,9.49-19.89,14.17-2.1,1.47-2.19,2.93-.72,5,6.9,9.57,13.71,19.2,20.54,28.83,1.24,1.74,2.45,2.43,4.49994.94q10.26-7.5,20.68994-14.75c3.27-2.27,1.29-4.16-.11-6.21-1.4-2.05-2.73-4.31-5.82-1.88Z\"/\u003e\n \u003cpath id=\"path3865\" class=\"cls-4\" d=\"M268.85267,560.89845c-1.4-1-2.88-.53-4.14.45q-15.18007,11.8-30.33,23.64c-1.33,1-2.32,2.47-.4,3.54,3.54,2,6.78,7,11.49,1.72a1.59,1.59,0,0,1,2.18-.47c3.76,2.46,7.55,4.87,11.3,7.33,1,.68.67,1.74.55,2.72-.53,4.29,2.44,9.12,6.71,9.35,4.46.23,2.36-4.48,3.76-6.69a3.001,3.001,0,0,0,.34-.94c2.6-10.65,5.2-21.31,8-32.85-1.12-4.32-6.07-5.22-9.46-7.8Zm-6.4,26.72c-7.81-4.59-7.81-4.59-1.47-9.65,1.28-1,2.6-2,4.48-3.44A56.33068,56.33068,0,0,1,262.45264,587.61842Z\"/\u003e\n \u003cpath id=\"path3867\" class=\"cls-4\" d=\"M255.94263,223.82847c5,6.94,12.68,9,20.82,6,8.46-3.06,15-11.32,14.66-18.87a20.55043,20.55043,0,0,0-1.24-5.29,2.11,2.11,0,0,0-2.13-1.73c-2.9,0-8.23,5.19-8.27,8.3-.05,4.19-2.73,6.29-6.08,7.63-3.17,1.26-6,0-7.87-2.63a73.14334,73.14334,0,0,1-5.94-9.75c-1.4-2.87-1.14-6,1.47-8.23s5.84-3.74,9.55-1.71c2.6,1.43,9.61-1,11.1-3.53,1-1.62-.28-2.53-1.09-3.43a13.88,13.88,0,0,0-10.8-4.68c-13.38.05-23.81,10.35-22.4,21.61.8,6.34,4.73,11.34,8.22,16.31Z\"/\u003e\n \u003cpath id=\"path3869\" class=\"cls-4\" d=\"M398.01264,603.60847c-3.39-8.82-5.72-10-14.79-8a3.8801,3.8801,0,0,0-3.27,2.63q-5.7,18.24-11.36,36.54c-.33,1.07-.81,2.33.47,3.17,2.73,1.8,9.9-.72,11.13-3.89.51-1.32.52-2.93,2.71-2.89,4,.08,8,0,12-.19,1.42-.06,2.3.48,2.55,1.76.77,4,3.17,5.18,6.48,4.32,6.77-.17,6.8-.19,4.58-6q-5.24-13.7601-10.5-27.45Zm-10.56,18.07c-3,0-3.44-.84-2.54-3.39,1.09-3.12,2-6.3,3.27-10.36,1.33,3.4,2.31,5.85,3.24,8.31,2.08,5.57,2.03,5.38-3.97,5.44Z\"/\u003e\n \u003cpath id=\"path3871\" class=\"cls-4\" d=\"M485.89265,229.15846c2.34,1.28,4.57,4.69,7.27.18,3.57-6,7.44-11.79,11.16-17.68,4.48-7.08,4.6-7.29,11.80005-2.76,3.82995,2.42,4.84-.19,6.44995-2.52,1.72-2.5,2.4-4.41-1-6.41q-12-7.15-23.55-14.92c-3.27-2.18-4.89-1.6-7,1.64-2.34,3.57-1.86,5.47,1.76,7.39,2.1,1.11,4.45,2.13,5.9,4.21-.74,1.19-1.34,2.19-2,3.17-4.53,7.16-8.93,14.4-13.62,21.45-2.52,3.88.39,4.91,2.83,6.25Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"New_Anchor\" data-name=\"New Anchor\"\u003e\n \u003cpath id=\"path3874\" class=\"cls-4\" d=\"M495.34266,446.89845c-2.57-10.54-5.11-20.92-7.68-31.42a3.2,3.2,0,0,0-5.33-1.56l-24.72,23.66a3.06,3.06,0,0,0,1.26,5.14c.92.26,1.82.51,2.74.7,2,.43,1.8,1.1.87,2.51a65.58921,65.58921,0,0,1-20,19.58l-.2.12a86.78041,86.78041,0,0,1-21.7,7,159.35362,159.35362,0,0,1-23.53,2.72,1.84,1.84,0,0,1-1.89929-1.77875q-.00147-.0456-.00073-.09125v-110.38a1.08,1.08,0,0,1,1.08-1.08h0c1,0,2.22.2,5.15.17,5.76-.06,11.76-.06,17.54-.4,1.88-.11,2.93-.05,4.13.85a12.35,12.35,0,0,0,16.71-1.29,12.52,12.52,0,0,0,.11-16.76,12.3,12.3,0,0,0-16.66-1.58,4.07008,4.07008,0,0,1-2.53,1.08q-12.0801-.06-24.14,0a1.90009,1.90009,0,0,1-1.39-.37v-12.62a1.79987,1.79987,0,0,1,.42-1.18,6.41962,6.41962,0,0,1,2-1.41c13-6.6,19.74-17.44,19.75-31.87,0-22.83-22.27-39.44-44.29-33.46-17.46,4.74-28.8,22.08-25.51,39.77,2.42,13,10.07,22.1,22.51,26.92a6.58893,6.58893,0,0,1,1.33.66,1.8,1.8,0,0,1,.71,1.47v10.32a1.78,1.78,0,0,1-1.77991,1.78012l-.02008-.00012c-8.65-.1-17.31-.06-26,0a5.53,5.53,0,0,1-3.31-1.12,12.24,12.24,0,0,0-16.62,1.7,12.37,12.37,0,0,0,16.73,18.07,5.08,5.08,0,0,1,3.3-1.08c8.39,0,16.79.12,25.18,0a3.19,3.19,0,0,1,2.17.46,1,1,0,0,1,.31.76v109.81a1.85,1.85,0,0,1-1.85388,1.84613q-.07315-.0002-.14612-.00611a192.44321,192.44321,0,0,1-30.22-5,92.78849,92.78849,0,0,1-17.68-6.21,1.5603,1.5603,0,0,1-.28-.16,66.87033,66.87033,0,0,1-19.54-21.38,1.38,1.38,0,0,1,1-2.16l2.65-.54a3.08,3.08,0,0,0,1.6-5.08l-23.26-25.35a3,3,0,0,0-5.13,1.14c-3.44,10.89-6.79,21.53-10.19,32.32a3.35,3.35,0,0,0,3.94,4.28l1.8-.41a5.12,5.12,0,0,1,5.69,2.64c13.38,26,33.5,44.81,60.12,56.7,10.4,4.65,14.52,6,23.5,7.37a1.77963,1.77963,0,0,1,1,.51l13.67,13.55a4.91,4.91,0,0,0,6.85,0l13.28-13a1.88009,1.88009,0,0,1,1.12-.52c13.3-1.25,19.23-4.54,33.54-11.09,22.15-10.13,39.74-27.76,51.06-49.32,1-1.92,1.88-2.15,3.58-1.58.65.22,1.31.43,2,.63a4.12,4.12,0,0,0,5.21-4.98Zm-114.1-131.83a17.72,17.72,0,0,1-17.0863-18.33182q.00284-.07909.00629-.15817c.48-10.46,9.18-18.18,19-17.43,10.34.8,17.46,9.11,16.94,18.69-.56,10.42-9.1,17.96-18.86,17.23Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"Background_wavy_outline\" data-name=\"Background wavy outline\"\u003e\n \u003cg id=\"path3838\"\u003e\n \u003cpath class=\"cls-5\" d=\"M777.74751,396.3365c0,39.89055-24.43136,75.42907-36.09539,111.38006-12.10741,37.302-13.65436,80.32774-36.25011,111.38007-22.82261,31.36171-63.41444,46.02679-94.77621,68.84939-31.05234,22.59569-57.42267,56.80386-94.71428,68.92159-35.99228,11.68462-77.27507-.11342-117.1553-.11342s-81.16308,11.798-117.145.11342c-37.302-12.11773-63.67226-46.32584-94.7246-68.92159-31.36171-22.8226-71.9536-37.48761-94.77621-68.84939-22.59569-31.042-24.14263-74.06775-36.25011-111.38007C44.17571,471.72428,19.76493,436.18582,19.76493,396.3365s24.43142-75.42907,36.09539-111.38007c12.10741-37.302,13.65436-80.32773,36.25011-111.38007,22.82261-31.35142,63.41444-46.02678,94.77621-68.83907,31.05234-22.59572,57.42261-56.81414,94.7246-68.92157,35.982-11.6846,77.26475.10313,117.145.10313s81.16308-11.78773,117.145-.10313c37.30206,12.10743,63.67226,46.32585,94.7246,68.92157,31.36177,22.81229,71.9536,37.48765,94.77621,68.83907,22.59575,31.05234,24.1427,74.07808,36.25011,111.38007C753.31615,320.90743,777.74751,356.45626,777.74751,396.3365Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"Waves\"\u003e\n \u003cg class=\"cls-6\"\u003e\n \u003cg id=\"g3847\"\u003e\n \u003cg id=\"path3841\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,377.02659c-22.21484,0-33.49121-5.31543-44.39746-10.45606-11.09472-5.22949-21.57519-10.16943-43.11816-10.16943-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-11.09473-5.23047-21.5752-10.17041-43.11915-10.17041-21.543,0-32.0205,4.93994-43.11328,10.16943-10.90332,5.14063-22.17773,10.45606-44.39209,10.45606-22.21484,0-33.48925-5.31543-44.39257-10.45606C302.50147,361.341,292.02442,356.4011,270.481,356.4011c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508s-33.48291-5.31494-44.38672-10.45508C127.48389,361.341,117.0044,356.4011,95.46,356.4011v-3c22.21582,0,33.49267,5.31592,44.398,10.457,11.09326,5.229,21.5708,10.16846,43.10742,10.16846s32.01709-4.93945,43.1123-10.16846c10.90821-5.14111,22.1875-10.457,44.40332-10.457,22.21485,0,33.48926,5.31543,44.39258,10.45606,11.09278,5.22949,21.56983,10.16943,43.11328,10.16943,21.54248,0,32.02-4.93994,43.1128-10.16943,10.90332-5.14063,22.17773-10.45606,44.39257-10.45606,22.21582,0,33.49219,5.31592,44.39844,10.457,11.09278,5.229,21.57031,10.16846,43.10742,10.16846,21.53614,0,32.01661-4.93945,43.11231-10.16846,10.9082-5.14111,22.1875-10.457,44.40332-10.457,22.21484,0,33.49121,5.31543,44.39746,10.45606,11.09473,5.22949,21.5752,10.16943,43.11816,10.16943Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"path3843\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,419.27854c-22.43847,0-33.81836-5.36426-44.82421-10.55176-10.99024-5.18066-21.37208-10.07421-42.69141-10.07421-21.32031,0-31.7041,4.89355-42.69824,10.07519-11.00489,5.1875-22.38575,10.55078-44.81739,10.55078-22.43261,0-33.81054-5.36328-44.81347-10.55078-10.99121-5.18164-21.37207-10.07519-42.69239-10.07519-21.31933,0-31.69824,4.89355-42.68652,10.07421-11.00293,5.1875-22.38037,10.55176-44.81885,10.55176-22.439,0-33.8164-5.36426-44.81884-10.55176-10.98877-5.18066-21.36768-10.07421-42.687-10.07421-21.3208,0-31.7041,4.89355-42.69775,10.07519-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078s-33.81006-5.36328-44.813-10.55078c-10.99072-5.18164-21.37207-10.07519-42.69238-10.07519v-5c22.43994,0,33.81933,5.36474,44.82471,10.55273,10.98876,5.17969,21.36767,10.07324,42.68066,10.07324s31.69482-4.89355,42.686-10.07324c11.00782-5.188,22.38965-10.55273,44.82959-10.55273,22.439,0,33.81641,5.36425,44.81885,10.55175,10.98877,5.18067,21.36768,10.07422,42.687,10.07422,21.31885,0,31.69776-4.89355,42.686-10.07422,11.00293-5.1875,22.38086-10.55175,44.81933-10.55175,22.43946,0,33.81934,5.36474,44.82422,10.55273,10.98926,5.17969,21.36817,10.07324,42.68164,10.07324,21.3125,0,31.69434-4.89355,42.68555-10.07324,11.00781-5.188,22.39063-10.55273,44.83008-10.55273,22.43848,0,33.81836,5.36425,44.82422,10.55175,10.99023,5.18067,21.37207,10.07422,42.6914,10.07422Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"path3845\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,469.78049c-22.66211,0-34.1455-5.4121-45.25-10.64648-10.88671-5.13184-21.16992-9.97852-42.26562-9.97852-21.09668,0-31.38184,4.84766-42.27149,9.9795-11.10546,5.2334-22.58886,10.6455-45.24414,10.6455-22.65625,0-34.13671-5.4121-45.24023-10.6455-10.88574-5.13184-21.16895-9.9795-42.26563-9.9795-21.0957,0-31.376,4.84668-42.26074,9.97852-11.10156,5.23438-22.58252,10.64648-45.24463,10.64648-22.66308,0-34.14306-5.4121-45.2456-10.64648-10.88428-5.13184-21.16455-9.97852-42.26026-9.97852-21.09668,0-31.38232,4.84766-42.27148,9.9795-11.105,5.2334-22.58838,10.6455-45.24414,10.6455-22.65625,0-34.13672-5.4121-45.23926-10.6455-10.88672-5.13184-21.16943-9.9795-42.26611-9.9795v-7c22.66406,0,34.14648,5.41309,45.251,10.64747,10.88428,5.13086,21.16553,9.97753,42.2544,9.97753s31.37256-4.84667,42.25976-9.97753c11.10694-5.23438,22.59229-10.64747,45.25586-10.64747,22.6626,0,34.14307,5.41211,45.24561,10.64649,10.88428,5.13184,21.165,9.97851,42.26025,9.97851,21.09473,0,31.37549-4.84667,42.26026-9.97851,11.10156-5.23438,22.582-10.64649,45.24511-10.64649,22.66407,0,34.14649,5.41309,45.251,10.64747,10.88477,5.13086,21.166,9.97753,42.25488,9.97753s31.37207-4.84667,42.25977-9.97753c11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,22.66211,0,34.14551,5.41211,45.25,10.64649,10.88672,5.13184,21.16992,9.97851,42.26562,9.97851Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"wQjLs5.tif\"\u003e\n \u003cpath class=\"cls-7\" d=\"M69.97291,396.08172C70.6446,213.94918,216.27906,70.56717,392.5182,67.52905c187.22819-3.22757,332.834,146.93812,334.99608,324.238,2.25017,184.52244-146.15893,333.33921-328.41178,333.43561C217.223,725.29886,70.2973,578.46061,69.97291,396.08172Zm628.85858.10588c.087-165.02914-132.68641-298.09593-296.30859-300.02194C233.12872,94.17171,98.45934,230.62774,98.67461,396.5698A299.75958,299.75958,0,0,0,398.88386,696.55966C565.4402,696.503,699.11342,561.48738,698.83149,396.1876Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M412.51678,420.83544q0,27.77351.00011,55.547c.00009,4.51579.04789,4.50986,4.53561,4.31713a165.17329,165.17329,0,0,0,29.487-4.2981c16.03543-3.6372,27.73135-13.19016,36.84-26.41364.899-1.30519.94647-2.17583-.9482-2.72638-6.37557-1.85276-6.77481-3.54612-1.95345-8.21029q11.4316-11.05884,22.96284-22.01472c2.981-2.84862,5.68513-2.20684,6.67288,1.725q4.00776,15.95289,7.797,31.9604c.87882,3.70353-1.83845,6.25218-5.57439,5.41785a12.16786,12.16786,0,0,1-1.8267-.5459c-1.85224-.73389-2.9823.0209-3.87188,1.64981a133.82736,133.82736,0,0,1-12.57828,19.3174c-9.49524,11.939-20.73307,21.86926-34.218,29.00371-10.1126,5.35023-20.3709,10.5033-31.53,13.4623a36.55951,36.55951,0,0,1-8.19914,1.445c-2.50462.078-4.26165,1.35775-5.94075,3.03594-3.77927,3.77713-7.6287,7.48452-11.47795,11.1908q-3.95936,3.81219-7.93154-.05583-6.42373-6.26729-12.77642-12.607a6.788,6.788,0,0,0-3.68046-1.99465c-20.80362-4.064-38.77235-13.92633-54.96386-27.25025A122.72966,122.72966,0,0,1,292.256,453.82869c-1.79252-3.467-3.72457-4.3321-7.62975-3.56234-3.879.76461-5.91529-1.38023-4.74629-5.14457q5.10108-16.42556,10.32191-32.81382c.95065-2.98756,3.80347-3.611,5.93528-1.29452q11.97693,13.01463,23.87712,26.09993c2.15078,2.35765.90718,5.38157-1.94892,5.68573a16.07623,16.07623,0,0,0-1.85514.45367c-1.88247.43418-2.03016,1.41677-1.09155,2.96479a68.14571,68.14571,0,0,0,19.78648,21.43968c4.39344,2.99136,9.66647,4.45113,14.79768,5.88678a203.78489,203.78489,0,0,0,35.2242,6.41915c2.46668.24052,3.24724-.43626,3.26142-3.12583.03152-5.9855.01018-11.97126.01018-17.95693q.00008-46.92759-.00024-93.85519c-.00006-3.59733-.23705-3.85153-3.72235-3.85454-7.89721-.00678-15.795.04724-23.69137-.03172a12.42517,12.42517,0,0,0-6.52984,1.87989c-5.47079,3.15842-10.90349,2.513-15.6066-1.70228-3.95359-3.5436-5.09-9.6431-2.788-14.96355,2.95926-6.83927,12.14641-9.64767,18.41925-5.58938a11.37135,11.37135,0,0,0,6.50616,1.94147c7.97857-.07857,15.9584-.0228,23.93772-.03314,3.03683-.00395,3.46463-.44242,3.47361-3.45626.00783-2.63366-.11638-5.27441.03978-7.8988.12007-2.01719-.74443-3.00685-2.51544-3.76524-7.2923-3.12258-13.76888-7.34228-18.01393-14.3021-14.78963-24.2479-.19341-51.56636,24.04645-56.40073a37.12876,37.12876,0,0,1,40.17752,19.57806c8.14333,16.34855,4.16244,38.98029-15.70441,49.09212-2.784,1.417-4.08927,3.094-3.77158,6.29807a72.48632,72.48632,0,0,1,.04142,8.85219c-.03473,1.4505.55743,2.016,1.96313,2.01271,8.141-.01891,16.2821-.00684,24.42315-.01286a7.33752,7.33752,0,0,0,3.91345-1.62311,12.88346,12.88346,0,0,1,16.069,1.34006,13.52581,13.52581,0,0,1,2.45849,15.85854,13.24886,13.24886,0,0,1-14.9215,6.27536,3.39939,3.39939,0,0,1-1.32441-.51711c-4.0766-3.46512-8.93825-2.76294-13.67086-2.54561a145.182,145.182,0,0,1-16.01207.15113c-2.35869-.15209-2.93316.70685-2.92357,2.962C412.55133,383.32515,412.51681,402.08037,412.51678,420.83544ZM399.01337,312.08036c9.99882.24248,18.41706-8.17787,18.66371-18.66837a18.87076,18.87076,0,0,0-37.72842-.96046C379.6315,303.69258,387.5072,311.80135,399.01337,312.08036Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M209.05294,537.02758c-4.17115,2.65838-7.71537,6.10479-11.55114,9.18481-.62059.49828-1.23735,1.00568-1.89242,1.45567a2.72568,2.72568,0,0,1-3.36577.05443,16.46006,16.46006,0,0,1-5.19667-6.69386c-.63166-1.65422.81665-2.77233,1.98348-3.7178,5.3205-4.311,10.69275-8.5582,16.00448-12.87986q6.20452-5.04825,12.2971-10.23295c1.61614-1.38066,3.02286-1.57149,4.54943.04584.76332.80872,1.64349,1.50584,2.43847,2.28632,2.45244,2.40787,2.746,5.11525,1.46839,8.283-2.13141,5.28455-4.04769,10.65586-6.16875,16.29435,5.56028-.8,10.82407-1.50256,16.06844-2.32847a10.358,10.358,0,0,1,10.99034,5.40615c1.02021,1.92315.34677,3.28862-1.20421,4.53933q-10.689,8.61926-21.33467,17.29226c-2.40923,1.95752-4.76456,3.98257-7.20322,5.90222-2.82074,2.22031-3.90528,2.03662-6.044-.76845-.77-1.00989-1.58377-1.99084-2.43216-2.936-1.79944-2.00459-1.74822-3.5382.34-5.26187,3.49951-2.88867,7.044-5.72285,10.55594-8.59656.51045-.41766,1.48264-.74365,1.14813-1.5298-.28564-.67134-1.24914-.59206-1.947-.547-1.58713.10242-3.17194.26232-4.75214.44648-5.27235.61439-8.39667-3.10381-6.81184-8.15241.76087-2.42389,1.57437-4.83123,2.36245-7.247-.00076-.1748.00005-.34855.00086-.52237Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M124.83943,400.61821a49.9315,49.9315,0,0,1,9.28427,3.97456c16.3791,8.31538,33.77766,10.14157,51.79721,8.71766,11.63718-.91951,22.39278-4.5979,32.75543-9.69762a100.347,100.347,0,0,1,43.64423-10.81909c16.29382-.20053,31.73817,2.65256,46.40921,9.89727,7.96874,3.935,16.1333,7.504,24.96248,9.2165a114.8072,114.8072,0,0,0,30.22024,1.46737,83.07775,83.07775,0,0,0,16.43728-2.90548c1.22182-.34116,1.48115-.01838,1.53988,1.16962.19139,3.874.26313,3.996-3.41964,4.76233-22.63978,4.71138-44.76095,3.81762-66.01766-6.24183-5.101-2.41392-10.14122-5.01893-15.41254-6.99385a75.00911,75.00911,0,0,0-18.29309-4.28871c-13.72664-1.47319-27.38561-1.2009-40.77338,2.6734-7.05613,2.042-13.66044,5.24007-20.26763,8.3644a92.68582,92.68582,0,0,1-37.55286,9.04313c-11.61992.31812-23.04916-.509-34.20041-3.9568-6.93357-2.14379-13.40275-5.41861-20.0276-8.31306a1.53835,1.53835,0,0,1-1.10171-1.61859C124.88329,403.64318,124.83943,402.21256,124.83943,400.61821Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M464.49871,163.96918c-.26722,6.07518-2.07214,11.27242-8.09521,14.01345-1.78726.81337-2.11038,2.00136-1.5267,3.84864,1.29055,4.08452,2.42882,8.219,3.54669,12.35548.6111,2.26118-.09574,3.30506-2.41985,3.13249-6.32272-.46951-8.90036-.32759-11.10084-7.6666-.84316-2.81211-1.80267-5.59654-2.48866-8.44665-.75683-3.14426-2.67515-3.50892-5.63728-3.39682-1.00754.03815-1.16858.80485-1.33738,1.66094-.539,2.7335-1.11427,5.46345-1.79945,8.16333-.55076,2.17018-1.61989,4.11862-4.0467,4.5225a9.5177,9.5177,0,0,1-7.577-2.10089c-1.30493-1.03064-.72347-2.67881-.45677-4.05477q2.86242-14.76743,5.80084-29.52011c.55421-2.807,1.093-5.61767,1.70464-8.41227.3451-1.577,1.26465-2.65375,3.03621-2.31506,8.41807,1.60929,17.04086,2.49662,24.93126,6.12827C461.92977,154.13513,464.47337,158.614,464.49871,163.96918Zm-26.40908-1.01946c-.19034,3.27377,1.99669,5.87631,5.51242,5.414a13.424,13.424,0,0,1,3.05606.21483c2.06351.20651,3.961-.35826,4.89424-2.52671a4.12054,4.12054,0,0,0-1.13421-5.15448,10.72717,10.72717,0,0,0-7.69731-2.60856C439.55573,158.35407,438.07551,159.84025,438.08963,162.94972Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M342.2831,622.50718c1.43768-5.3819,2.88656-10.76087,4.3093-16.14674,1.0825-4.09775,2.22059-4.75142,6.34736-3.57514.613.17474,1.22679.34657,1.84014.52,4.33612,1.226,4.85469,2.15332,3.61925,6.51-2.75869,9.7284-5.53762,19.451-8.26828,29.1872-.53629,1.91215-.89729,3.87371-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68923,2.0617c-6.48549-.48133-8.094-1.4942-9.78068-7.04728-1.81851-5.9871-3.99838-11.8647-6.04163-17.78282a23.37683,23.37683,0,0,0-1.1367-2.2523c-1.38006,5.0849-2.68277,9.53173-3.78543,14.02762-1.8065,7.36561-2.48343,7.06972-8.85965,5.2735-4.04836-1.1405-4.6659-2.2012-3.48673-6.3449,3.31145-11.63688,6.93669-23.189,9.59838-35.0026a2.54662,2.54662,0,0,1,3.026-2.27568c5.63514.3088,7.7399,1.88912,9.51649,7.23565q3.29431,9.91381,6.60418,19.82249Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M578.60084,516.9168c8.15959.2214,13.74292,5.30449,14.76189,12.90512.55708,4.15545.70132,4.23865,4.977,4.93512,3.38175.551,6.749,1.2023,10.1052,1.89421,2.36909.4884,2.74042,1.321,1.63632,3.48821-2.52315,4.9526-6.37615,8.55329-13.14462,6.19284a43.08717,43.08717,0,0,0-7.00433-1.47141,4.60683,4.60683,0,0,0-5.13139,3.59093c-.28046,1.141.60935,1.39055,1.15035,1.834,2.45709,2.01406,4.96493,3.96667,7.469,5.92273a2.94242,2.94242,0,0,1,.67881,4.4034,35.24644,35.24644,0,0,1-3.30709,4.35463c-1.7594,1.90409-3.135,1.98746-5.22522.37019-4.52461-3.50054-8.97585-7.09574-13.4852-10.61628Q565.03873,549.222,557.9372,543.799c-3.63035-2.75853-3.8993-4.26987-1.09235-7.826,3.49565-4.42865,6.9371-8.90606,10.5875-13.20486C570.47154,519.18909,574.22216,516.73849,578.60084,516.9168Zm3.6265,16.15188c.08694-2.7894-3.35422-5.1474-5.43817-3.9451a20.14664,20.14664,0,0,0-6.69088,6.31964c-.37764.56382-.63221,1.16675-.13705,1.74642a23.347,23.347,0,0,0,5.33129,4.682.88184.88184,0,0,0,1.10117-.14762A20.748,20.748,0,0,0,582.22734,533.06868Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M339.10668,153.64432c.11363-2.74291,1.59552-3.61207,3.57964-3.929,5.02684-.80313,10.06357-1.54646,15.08378-2.38861,3.449-.57858,6.86354-1.36819,10.31791-1.90681,3.59907-.56114,4.29083.01322,5.00182,3.60458,1.20659,6.09468.94468,6.433-5.30021,7.37618-4.00721.60517-8.00728,1.26065-12.00273,1.93935-2.24427.3812-3.12081,1.57071-2.80722,3.63433.41666,2.74187,1.159,3.46113,3.73641,3.06113,4.16211-.64592,8.30616-1.42151,12.43963-2.23482,3.55887-.7003,4.634-.10081,5.46994,3.38356.18473.77.23355,1.57192.36036,2.35664.52068,3.22187-.31037,4.465-3.41809,4.98918-4.00162.675-7.9952,1.42541-12.01857,1.93595-3.898.49463-3.90641,1.94866-3.14429,5.5802.40594,1.93429,2.23337,1.78384,3.75928,1.52138,4.69931-.80821,9.38462-1.69751,14.08133-2.52135.85748-.15042,1.74326-.13772,2.61551-.20656a2.42653,2.42653,0,0,1,1.75536.63731c.57777.47573,2.01651,7.61077,1.68105,8.245-.6356,1.20159-1.85356,1.45848-3.01378,1.67022-7.97,1.45463-15.94738,2.86841-23.92264,4.29376-1.0162.18159-2.031.37405-3.05168.52683-3.15995.473-4.05143-.11-4.597-3.22293-1.63376-9.32226-3.22231-18.65244-4.82727-27.97976C340.26542,160.40793,339.649,156.80528,339.10668,153.64432Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M494.66911,622.29209c.06864,6.20874-3.30787,10.43744-8.00549,13.89373-7.67676,5.64843-18.118,5.75624-25.14853.29063-2.74761-2.136-4.31035-5.11835-5.58222-8.20351a69.40613,69.40613,0,0,1-3.7418-12.53979c-1.08255-5.28537.51914-9.8949,4.1311-13.84474a23.66265,23.66265,0,0,1,24.96263-6.097,14.12324,14.12324,0,0,1,6.80536,5.42375c1.07153,1.5588.6936,2.768-1.03548,3.3676-4.13142,1.43311-8.16994,2.86014-12.70206.95324a7.46406,7.46406,0,0,0-10.24409,7.86705,28.59581,28.59581,0,0,0,5.0581,13.73665c1.82988,2.552,4.45477,3.16537,8.12766,2.03616,3.05658-.93986,5.57427-3.78164,5.65838-6.42892.04087-1.28613-.6083-1.94647-1.90835-1.79458a8.82634,8.82634,0,0,0-1.34156.47057,6.40393,6.40393,0,0,1-1.8447.44169c-3.85177-.09261-2.98119-3.74066-4.19267-5.78787-.84561-1.429-.64258-3.15462,1.118-3.83811,4.35649-1.69128,8.76867-3.24962,13.20791-4.71126a2.67,2.67,0,0,1,3.32092,1.69882A33.77829,33.77829,0,0,1,494.66911,622.29209Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M511.82,461.30754a113.1003,113.1003,0,0,0,19.57007,2.01166c14.47072.23812,28.322-2.34648,41.41785-8.73113,11.265-5.49207,22.79255-10.23148,35.4471-11.5479,19.17828-1.99509,37.817-.33529,55.50848,7.94042,1.10977.51913,3.04551.76479,3.05048,1.93212a20.62742,20.62742,0,0,1-1.30686,6.27069c-.3231.99592-1.1997.1351-1.76239-.10936-6.69749-2.90934-13.35738-5.87255-20.58272-7.355-10.3928-2.1323-20.85372-2.29208-31.37994-1.56436-12.06035.83372-23.13,4.92071-33.812,10.2465a98.4118,98.4118,0,0,1-48.795,10.22517A112.236,112.236,0,0,1,509.063,468.2257c-1.34685-.303-1.839-.67253-.89554-1.9976a24.54364,24.54364,0,0,0,1.98993-3.5377C510.63584,461.70544,511.23694,461.12932,511.82,461.30754Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M539.29226,566.60069c.10471,1.08256-.67594,1.82043-1.63638,2.49007-3.85289,2.68633-7.71021,5.36722-11.51977,8.114-.90981.656-2.306,1.15559-2.02367,2.64944a5.734,5.734,0,0,0,2.79831,3.7095c.88221.55125,1.79565-.14575,2.59232-.72232,3.67538-2.65961,7.40512-5.24591,11.03443-7.96649a2.61628,2.61628,0,0,1,3.97361.31377c.27492.28857.59192.54166.83959.851,4.2117,5.259,3.48758,6.08035-.75294,8.8362-2.93284,1.90607-5.7429,4.00373-8.57774,6.05732-2.43639,1.76488-2.56976,2.71912-.84088,5.09337,1.43859,1.97559,2.45639,2.12514,4.82543.452,3.77032-2.66283,7.44914-5.45562,11.23005-8.10289,2.88969-2.02324,3.73905-1.82014,5.85878,1.01077,3.551,4.74225,3.49851,5.278-1.20349,8.64146q-9.716,6.94981-19.48465,13.82585c-2.55216,1.80056-3.51459,1.7145-5.33544-.82579q-10.78529-15.04633-21.4412-30.18511c-1.79073-2.54338-1.47209-3.71779,1.08861-5.54325q10.20891-7.27745,20.41615-14.55723c2.45352-1.75045,3.87205-1.59763,5.57509.887C537.72282,563.10944,539.19474,564.38862,539.29226,566.60069Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M269.5823,612.05061c.51448-1.77237-.3955-2.87961-2.03724-3.8653-3.259-1.95664-6.42392-4.075-9.57268-6.20786a2.40868,2.40868,0,0,0-3.3804.22842c-3.42369,2.913-4.65639,2.92725-8.41256.39258-.85607-.57768-1.66755-1.22107-2.51763-1.808-2.61857-1.80786-2.72391-2.58133-.15167-4.59936,10.45083-8.19906,20.95985-16.324,31.43015-24.49845a3.91185,3.91185,0,0,1,5.21041-.18158c2.38669,1.68123,5.24458,2.61126,7.412,4.67566a4.63183,4.63183,0,0,1,1.49238,4.89968c-2.62823,10.57583-5.16261,21.17493-7.75587,31.75947-.50779,2.07252-1.31206,4.04454-1.40745,6.24732-.09118,2.10585-1.47873,3.01016-3.61925,2.77765C272.36157,621.446,269.379,617.18661,269.5823,612.05061Zm6.19394-26.48052c-1.9764,1.50981-3.54294,2.68416-5.08572,3.889-5.70612,4.45631-5.62187,5.2683.65194,8.922,1.05337.61352,1.51734.55459,1.8611-.59924A57.927,57.927,0,0,0,275.77624,585.57009Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M406.00176,606.74647c4.03884-.02157,6.27334,2.15876,7.75213,5.32034,2.35509,5.035,4.13832,10.30029,6.11539,15.48668q3.77017,9.89015,7.47844,19.80379c1.09769,2.94578.59525,3.60174-2.61481,3.76369a31.211,31.211,0,0,0-3.31542.30447c-3.30428.52424-5.34622-.459-6.1992-3.6909-.66951-2.537-2.11318-2.97672-4.35953-2.85254-3.49538.19328-7.00216.30114-10.50146.25262-1.79331-.02479-2.98122.57136-3.38041,2.28013-.84254,3.60671-7.48271,6.07216-10.763,5.31489-2.13043-.49179-2.33431-2.02452-1.73692-3.9123q3.63394-11.48382,7.1857-22.99354c1.39327-4.48069,2.8359-8.94781,4.12364-13.45889.82416-2.887,2.28493-4.72149,5.527-5.02059C402.956,607.19278,404.61024,606.91111,406.00176,606.74647Zm-.6161,14.30415c-.22042.23368-.37653.32541-.41807.45414q-1.17142,3.62918-2.3177,7.26664c-1.99435,6.31941-1.50141,6.87037,5.15772,6.16658,1.86508-.19708,2.37346-.9333,1.71716-2.66849C408.12553,628.56993,406.78306,624.84892,405.38566,621.05062Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M280.41153,176.005a15.20468,15.20468,0,0,1,12.24148,5.4112c1.35232,1.54223,1.325,3.0487-.412,4.252-3.50491,2.4281-7.17987,4.00986-11.59734,2.17787-3.30867-1.37216-7.004-.12943-9.67351,2.8811-2.14456,2.41848-2.41035,5.19553-.53787,8.62222,1.63866,2.99885,3.4344,5.91873,5.28875,8.79083,1.72151,2.66632,3.92088,4.69637,7.46555,3.9816,4.21616-.85018,7.15482-3.6032,7.67421-7.44391.62242-4.60271,3.41663-7.3732,7.3511-9.23638,1.87806-.88934,3.11844-.22749,3.85724,1.79041,2.735,7.47071.23138,13.64858-4.93514,18.91025-5.11952,5.21381-11.36713,8.04-18.90012,7.34012a15.478,15.478,0,0,1-10.06457-4.94913,45.53606,45.53606,0,0,1-9.67556-14.97055c-3.6161-9.56479.2922-19.16,9.38878-24.14282A26.90939,26.90939,0,0,1,280.41153,176.005Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M130.40863,452.35641c7.9892,3.50987,15.33983,7.21147,23.45863,8.76472,19.98858,3.82417,39.5819,3.21335,58.4993-5.23486,7.18258-3.20764,14.22538-6.76867,21.73193-9.20659a98.5915,98.5915,0,0,1,32.5303-4.35744c2.21407.0404,5.03889-.84579,6.47529.54961,1.23252,1.19739-.18806,4.01143.59178,6.08819.44707,1.19037-.61669.98189-1.27854.96441-4.37794-.11558-8.75165-.16925-13.13492-.074-12.9032.28048-24.91544,3.8555-36.445,9.42258-10.21024,4.93-20.65521,9.14476-32.06778,10.447-19.64067,2.24111-38.77517.92054-56.92139-7.754-.65435-.3128-1.328-.51857-1.51775-1.34988C131.73172,457.993,131.11264,455.37451,130.40863,452.35641Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M354.38937,375.5389c-16.1197.8158-31.20515-3.06312-45.54114-10.28237-23.52439-11.84632-47.99405-13.31726-73.1069-6.209-6.57947,1.86232-12.72055,5.00113-18.86986,7.96969-14.41281,6.95768-29.64912,9.33029-45.50207,8.7917a92.27192,92.27192,0,0,1-26.51165-4.38939c-5.80962-1.95373-11.29422-4.68308-16.92528-7.06382-1.79653-.75953-1.31056-2.15031-.91727-3.18888.53169-1.404,1.45079-.11675,2.0635.16665,9.82642,4.545,19.68809,9.001,30.59454,10.29239,17.79081,2.10655,35.25044,1.45741,52.02239-5.88052,8.65453-3.78646,17.059-8.22,26.23605-10.74344,12.06079-3.31636,24.33425-3.70511,36.74035-2.93322,13.37522.83222,25.6077,5.34427,37.43274,11.19708a92.4739,92.4739,0,0,0,45.286,9.34156,109.098,109.098,0,0,0,22.44424-2.98777c.61274-.1527,1.76437-1.2094,1.98929.41927.15614,1.13059.35782,2.33359-1.39523,2.75435a95.95314,95.95314,0,0,1-16.72225,2.713C360.6112,375.68924,357.49583,375.5389,354.38937,375.5389Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M515.14274,412.4614a129.653,129.653,0,0,0,18.804,1.301,90.35589,90.35589,0,0,0,40.79067-9.45608c9.96558-4.861,20.18637-9.03313,31.34486-10.45077a126.50648,126.50648,0,0,1,33.333.15431c11.518,1.58266,21.91011,6.38507,32.28718,11.23407.87228.4076,1.45888,5.03041.705,5.64614-.73967.60414-1.34527-.1399-1.94439-.41435-6.1396-2.81235-12.22224-5.76144-18.60922-7.99006-11.14358-3.88822-22.68684-4.59252-34.36908-4.33084a88.48505,88.48505,0,0,0-38.50033,10.02683,97.64341,97.64341,0,0,1-46.74008,10.91515c-4.61617-.0872-9.23509-.27981-13.83547-.78961a2.06186,2.06186,0,0,1-2.12155-1.79777C516.01963,415.27246,515.60463,414.06742,515.14274,412.4614Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M542.52427,201.26269a9.725,9.725,0,0,1-1.50664-.48238c-.85029-.42095-1.65474-.93395-2.48264-1.40089-5.82989-3.2881-6.48853-3.44832-9.87759,1.96666-4.24122,6.77666-8.567,13.50072-12.89333,20.22363-1.92773,2.9956-3.09988,3.18921-6.00495,1.20247-.98009-.67027-1.97076-1.327-2.97949-1.953-3.19478-1.98272-3.45279-3.06237-1.384-6.33181,3.13309-4.9517,6.30909-9.87636,9.4368-14.83144,1.98941-3.15177,3.83616-6.398,5.93385-9.47442.695-1.01922.42249-1.47535-.22352-2.17837-1.548-1.68477-3.68262-2.44562-5.57919-3.565-3.23154-1.90732-3.79108-3.68447-1.92129-6.81463,2.53935-4.25106,4.06845-4.81844,7.49113-2.66075q12.56026,7.91814,25.08295,15.89578c2.99125,1.91028,3.2274,2.95169,1.3879,6.05255C545.93941,198.7061,545.13192,200.85343,542.52427,201.26269Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M671.1713,367.44238c-6.62985-2.8604-12.94561-6.06574-19.6652-8.32069-10.95736-3.67693-22.26191-4.35429-33.70478-4.15654-14.39074.24868-27.77619,4.21544-40.49231,10.6896-19.78213,10.07173-40.67789,12.0325-62.34133,8.84915-9.56437-1.40546-18.36362-5.01329-27.02684-9.04526a133.028,133.028,0,0,0-18.35369-7.35021c-1.47694-.43593-1.42014-1.01606-1.1877-2.17589.29613-1.47765,1.12362-1.151,2.09813-.8756a108.12077,108.12077,0,0,1,19.00641,7.60931c22.32488,11.19546,45.58675,12.55823,69.49159,6.74018,7.43879-1.81049,14.30514-5.325,21.19534-8.61044a92.65829,92.65829,0,0,1,38.52261-9.05772c13.43316-.27062,26.55247,1.12694,39.07752,6.29042,3.6742,1.51466,7.23539,3.30472,10.91672,4.80009C670.817,363.68556,671.68528,365.0037,671.1713,367.44238Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M501.83656,408.97006c-.29239.33824-.4002.45113-.4948.57417-2.906,3.77877-6.07339,2.65049-9.6955.9407-8.748-4.12934-17.45843-8.40152-27.05938-10.38222a111.79683,111.79683,0,0,0-29.68436-1.711,73.23082,73.23082,0,0,0-14.14267,2.14116c-1.441.37922-1.95292.0511-1.94845-1.54825.00994-3.53528-.09524-3.62961,3.41242-4.237,18.05111-3.12594,35.932-2.95845,53.45586,3.064,7.82512,2.68928,15.10325,6.67612,22.76435,9.76044C499.54032,408.01337,500.62956,408.47213,501.83656,408.97006Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M443.55191,449.61857a95.4557,95.4557,0,0,0-22.75034,2.5697c-1.73052.44631-1.97231-.16046-1.98064-1.69325-.03084-5.677-.08735-5.74386,5.17375-6.59032,15.42874-2.4823,30.768-2.33187,45.99432,1.574,2.55371.65508,2.80006,3.22425,4.41244,4.64847.54284.47955-2.95242,3.42779-3.97654,3.12428a77.76842,77.76842,0,0,0-16.13941-3.0198C450.71317,449.95553,447.13014,449.81817,443.55191,449.61857Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M342.6917,463.0349c4.76184-.03909,9.47559.44122,14.21314.27714a97.55222,97.55222,0,0,0,23.30149-3.32314c1.24386-.35171,1.62711-.33876,1.69005,1.10484.26772,6.13809.23054,5.85568-5.63385,7.58649-7.19391,2.12324-14.01088.492-20.85536-1.27383C351.07667,466.28914,346.701,465.21552,342.6917,463.0349Z\"/\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 792 792\"\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1 {\n fill: #fff;\n }\n \u003c/style\u003e\n \u003c/defs\u003e\n \u003cpath class=\"cls-1\" d=\"M402.5229,96.16562c-154.49622-1.81855-280.08545,111.53747-300.82166,257.3861,18.18463.8946,28.32349,5.67072,38.15668,10.3064,6.42492,3.0285,12.64776,5.95764,20.92779,7.88855,17.406,1.9483,34.48792,1.18353,50.90991-6.00128,8.65455-3.78644,17.059-8.22,26.23609-10.74347,12.06073-3.31635,24.33423-3.70508,36.74029-2.93323a81.61615,81.61615,0,0,1,21.24286,4.35767,108.50422,108.50422,0,0,1,18.95868,7.43078c3.69989,1.74427,7.33338,3.45514,11.32984,4.96241a95.606,95.606,0,0,0,31.18744,3.78784A109.1017,109.1017,0,0,0,379.835,369.6196c.61273-.15271,1.76434-1.20942,1.98932.41925a5.6943,5.6943,0,0,1,.0849,1.28149c2.22662-.57587,4.30823-1.22314,6.28912-1.92468v-4.37049c-.00006-3.59729-.23706-3.8515-3.72235-3.85449-7.89722-.00677-15.79492.04724-23.69134-.03174a12.425,12.425,0,0,0-6.52985,1.87989c-5.47083,3.15844-10.9035,2.51306-15.60663-1.70227-3.95355-3.54358-5.09-9.64313-2.788-14.96357,2.95929-6.83923,12.14642-9.64764,18.41925-5.58935a11.3715,11.3715,0,0,0,6.50616,1.94147c7.97858-.07856,15.95844-.02283,23.93775-.03315,3.0368-.004,3.4646-.44244,3.47357-3.4563.00787-2.6336-.11634-5.27435.03979-7.89874.12006-2.01721-.74438-3.00689-2.51544-3.76526-7.2923-3.12256-13.76886-7.34228-18.01392-14.30212-14.78961-24.24786-.19342-51.56635,24.04645-56.4007a37.12879,37.12879,0,0,1,40.17755,19.57807c8.14331,16.34851,4.16242,38.98028-15.7044,49.0921-2.784,1.417-4.0893,3.09405-3.77161,6.2981a72.492,72.492,0,0,1,.04144,8.85217c-.03473,1.4505.55744,2.016,1.96314,2.01269,8.141-.01892,16.282-.00683,24.42309-.01288a7.33724,7.33724,0,0,0,3.91346-1.6231,12.88345,12.88345,0,0,1,16.069,1.34008,13.51634,13.51634,0,0,1,3.73883,12.27125c2.05615.32867,3.99444.713,5.83264,1.14373.321-1.30749,1.12-1.00988,2.06061-.74414a108.12148,108.12148,0,0,1,19.0064,7.60932c22.32489,11.19543,45.5868,12.55822,69.49158,6.74017,7.43884-1.81049,14.30518-5.325,21.19538-8.61041a92.65783,92.65783,0,0,1,38.52258-9.05774c13.43316-.27063,26.55249,1.127,39.07751,6.2904,3.67426,1.51471,7.23542,3.30475,10.91675,4.80011,1.9079.775,2.78882,1.93659,2.5614,3.95441a79.008,79.008,0,0,0,26.7356,6.83966C686.63056,219.19272,558.61689,98.003,402.5229,96.16562ZM297.134,216.14224c-5.11951,5.21381-11.36713,8.04-18.90009,7.34009a15.47784,15.47784,0,0,1-10.06457-4.94916,45.53557,45.53557,0,0,1-9.67554-14.97052c-3.61609-9.56476.29218-19.16,9.38873-24.14282a26.90963,26.90963,0,0,1,12.529-3.41486,15.20483,15.20483,0,0,1,12.24151,5.4112c1.3523,1.54223,1.325,3.0487-.412,4.25207-3.50494,2.4281-7.17987,4.00983-11.59735,2.17786-3.30865-1.37213-7.004-.12946-9.67352,2.8811-2.14453,2.41846-2.41034,5.1955-.53784,8.62219,1.63867,2.99884,3.43439,5.91877,5.28876,8.79084,1.72149,2.66632,3.92083,4.69641,7.46551,3.98162,4.21619-.85015,7.15485-3.60321,7.6742-7.4439.62243-4.60273,3.41662-7.37323,7.35113-9.23639,1.878-.88935,3.11841-.22748,3.85724,1.7904C304.80421,204.70266,302.30054,210.88052,297.134,216.14224Zm83.16363-27.42035c-.63562,1.20154-1.85357,1.45844-3.01379,1.67017-7.97,1.45465-15.94739,2.86847-23.92267,4.29376-1.01617.18164-2.031.37408-3.05163.52685-3.16.473-4.05146-.11-4.597-3.223-1.63373-9.3222-3.22229-18.6524-4.82727-27.97973-.61987-3.60205-1.23627-7.20472-1.77856-10.36567.11364-2.74292,1.59552-3.61206,3.57959-3.92907,5.02685-.8031,10.0636-1.54645,15.0838-2.38861,3.449-.57856,6.86352-1.36817,10.31793-1.9068,3.59906-.56116,4.29083.01324,5.00183,3.60461,1.20654,6.09467.94464,6.433-5.30023,7.37616-4.0072.60516-8.00726,1.26062-12.00275,1.93933-2.24426.38123-3.12079,1.57074-2.80719,3.63434.41663,2.74188,1.15894,3.46112,3.73639,3.06116,4.16211-.64594,8.30615-1.42151,12.43964-2.23487,3.5589-.70025,4.634-.10076,5.46991,3.38361.18475.77.23358,1.5719.36041,2.35663.52069,3.22186-.31036,4.465-3.41809,4.9892-4.00165.675-7.99524,1.42535-12.01862,1.93591-3.898.49463-3.90637,1.94867-3.14428,5.5802.40594,1.93433,2.23339,1.78381,3.75927,1.52136,4.69934-.80817,9.38465-1.69751,14.08136-2.5213.85749-.15045,1.74329-.13776,2.61548-.2066a2.42644,2.42644,0,0,1,1.75537.63733C379.19434,180.9526,380.63306,188.08767,380.29761,188.72189Zm76.1059-10.73926c-1.78729.81336-2.11041,2.00135-1.52673,3.84864,1.29059,4.08453,2.42883,8.21905,3.54669,12.35546.61114,2.26117-.0957,3.30506-2.4198,3.13251-6.32275-.46954-8.90039-.32757-11.10089-7.66662-.84314-2.81208-1.80268-5.59656-2.48865-8.44666-.75684-3.14423-2.67511-3.50891-5.63727-3.39679-1.00757.03815-1.16858.80481-1.3374,1.661-.53894,2.73346-1.11426,5.46344-1.79944,8.16333-.55078,2.17017-1.61987,4.11859-4.04669,4.52246a9.51769,9.51769,0,0,1-7.577-2.10089c-1.30493-1.03064-.72345-2.67877-.45678-4.05475q2.86248-14.76745,5.80084-29.52014c.5542-2.807,1.09308-5.61761,1.70465-8.41223.34509-1.577,1.26465-2.65375,3.03619-2.31506,8.4181,1.60925,17.0409,2.49658,24.93128,6.12823,4.89722,2.254,7.44079,6.73291,7.46619,12.08807C464.23151,170.04434,462.42658,175.2416,456.40351,177.98263Zm90.60071,18.92847c-1.06482,1.795-1.87232,3.94232-4.47992,4.35156a9.71935,9.71935,0,0,1-1.50665-.48236c-.85028-.421-1.65479-.934-2.48267-1.40088-5.82989-3.28814-6.48853-3.44836-9.87756,1.96668-4.24121,6.77661-8.567,13.50067-12.89337,20.22357-1.92768,2.9956-3.09986,3.18927-6.005,1.20251-.98-.67028-1.97076-1.327-2.97949-1.95306-3.19476-1.98273-3.45276-3.06232-1.384-6.33179,3.13311-4.95172,6.30908-9.87634,9.43682-14.83142,1.98938-3.15179,3.83613-6.39807,5.93384-9.47442.695-1.01923.42249-1.47535-.22351-2.17841-1.548-1.68475-3.68262-2.44562-5.57922-3.56494-3.23151-1.90735-3.79108-3.68451-1.92127-6.81464,2.53937-4.251,4.06842-4.81842,7.49115-2.66076q12.56022,7.91811,25.08295,15.89581C548.60755,192.76883,548.8437,193.81021,547.00422,196.9111Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M442.72083,158.28878c-3.1651.06525-4.64532,1.55146-4.63122,4.66095-.19031,3.27375,1.9967,5.87629,5.51245,5.414a13.4233,13.4233,0,0,1,3.056.21484c2.06354.20648,3.96106-.35828,4.89429-2.52673a4.1206,4.1206,0,0,0-1.13422-5.15448A10.7271,10.7271,0,0,0,442.72083,158.28878Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M170.65815,413.64822a129.16793,129.16793,0,0,0,15.26276-.33783c11.6372-.91949,22.39276-4.5979,32.75543-9.69757a100.34565,100.34565,0,0,1,43.64422-10.81909,113.83117,113.83117,0,0,1,19.41974,1.36444c15.32361,1.45148,24.56848,5.807,33.55951,10.04614,7.69544,3.628,15.09711,7.11267,26.1612,8.87708a123.233,123.233,0,0,0,22.45147.29345,83.07847,83.07847,0,0,0,16.43732-2.90545c1.18567-.33112,1.46295-.02967,1.5321,1.07373,2.23865-.58643,4.3263-1.24756,6.31659-1.96167q0-18.5137-.00012-37.02741c-7.6886,2.59864-17.02161,4.47254-30.21155,4.47254-12.75592,0-21.9013-1.754-29.44384-4.21973a100.82654,100.82654,0,0,1-19.69477-7.55035,100.04332,100.04332,0,0,0-17.45025-6.85932,98.46911,98.46911,0,0,0-20.917-1.99609c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508a102.989,102.989,0,0,1-20.34424-1.837,83.72829,83.72829,0,0,1-17.76337-3.77c-5.80963-1.95373-11.29419-4.6831-16.92523-7.06384-1.6239-.68652-1.38226-1.88654-1.03045-2.87823a81.11373,81.11373,0,0,0-25.61438-4.94733A302.73549,302.73549,0,0,0,98.70734,393.695c20.31159.49225,31.11719,5.57929,41.57734,10.51026C148.91834,408.27487,157.17866,412.16647,170.65815,413.64822Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M271.34248,598.38107c1.05334.61353,1.51733.55457,1.86108-.59924a57.927,57.927,0,0,0,2.57269-12.21173c-1.97644,1.50976-3.543,2.68414-5.08575,3.889C264.98438,593.91543,265.06867,594.72738,271.34248,598.38107Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M405.38569,621.05063c-.22046.23364-.37653.32537-.41809.4541q-1.17143,3.62923-2.31769,7.26666c-1.99439,6.3194-1.5014,6.87036,5.15771,6.16656,1.86506-.19708,2.37342-.93328,1.71717-2.66845C408.12556,628.56991,406.78309,624.8489,405.38569,621.05063Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M182.96534,462.78048c1.63122,0,3.19055-.03222,4.69781-.08813a85.18642,85.18642,0,0,0,24.70343-6.80609c7.18256-3.20764,14.22535-6.76868,21.73194-9.20661a96.4645,96.4645,0,0,1,29.90576-4.36474q2.42633-.1215,5.04828-.14874a10.32123,10.32123,0,0,1,2.45276-.003c3.28405.02417,6.33343.16181,9.175.39875q4.71259-15.14209,9.52155-30.254c.95068-2.98755,3.80347-3.611,5.9353-1.29449q11.97693,13.01458,23.87714,26.09991c2.15076,2.3576.90716,5.38153-1.949,5.68573a16.074,16.074,0,0,0-1.8551.45367c-1.88251.43415-2.03015,1.41675-1.09155,2.96479a78.22153,78.22153,0,0,0,6.64069,9.3659c9.012,3.973,19.023,7.197,36.22747,7.197a112.38881,112.38881,0,0,0,11.5636-.56018,82.83657,82.83657,0,0,0,10.65589-2.23144c.80444-.22742,1.24554-.29511,1.47625.07074,2.31494-.60828,4.46607-1.29785,6.51606-2.04309q0-21.57716-.00013-43.1543c-7.70507,2.57117-17.0559,4.41632-30.21167,4.41632-2.28534,0-4.45031-.05835-6.51745-.16376a93.54231,93.54231,0,0,1-39.017-8.95526c-5.101-2.41394-10.14118-5.019-15.41254-6.99389a74.796,74.796,0,0,0-17.36853-4.17542c-2.82831-.21912-5.87683-.33765-9.19031-.33765-21.3208,0-31.7041,4.89356-42.69775,10.0752-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078-2.93555,0-5.67749-.09393-8.25836-.2652a98.67563,98.67563,0,0,1-28.75452-4.01226c-6.93359-2.1438-13.40277-5.41864-20.02759-8.31305a1.5384,1.5384,0,0,1-1.10174-1.6186c.02795-.66265.03247-1.32788.03033-2.00842-6.8388-2.36889-14.89264-4.0885-26.14929-4.36609a305.17549,305.17549,0,0,0,3.46277,43.63263c18.33227.95374,28.59308,5.78479,38.544,10.47541C151.59522,457.9338,161.87647,462.78048,182.96534,462.78048Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M376.26252,468.6802a26.55722,26.55722,0,0,1-10.205.85212c-2.52679.16131-5.209.24816-8.07068.24816a101.21659,101.21659,0,0,1-23.58245-2.48736c.16992.11828.32934.24731.50079.36407,4.39343,2.9914,9.66644,4.45118,14.79767,5.88678a203.78708,203.78708,0,0,0,35.22418,6.41919c2.46667.24048,3.24725-.43628,3.26141-3.12585.02-3.80591.01868-7.61194.01508-11.418a80.21566,80.21566,0,0,1-9.20807,2.43976C378.26679,468.09884,377.36884,468.35367,376.26252,468.6802Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M470.42487,453.25149a77.765,77.765,0,0,0-16.1394-3.01983c-3.57233-.27613-7.15534-.41352-10.73358-.6131a95.45289,95.45289,0,0,0-22.75031,2.5697,5.04666,5.04666,0,0,1-.52472.10669,78.13,78.13,0,0,0-7.76,2.682q0,10.70278.00006,21.40545c.00006,4.51575.04786,4.50983,4.53559,4.31714a165.17283,165.17283,0,0,0,29.48706-4.29816c13.77606-3.12469,24.343-10.62445,32.82446-21.05792-2.31689-.96008-4.73236-1.85864-7.34039-2.65832A2.5241,2.5241,0,0,1,470.42487,453.25149Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M491.64625,410.48489a177.34737,177.34737,0,0,0-19.18274-8.21747c-6.9895-2.16052-15.355-3.61487-26.97132-3.61487-15.12084,0-24.73645,2.46271-32.97113,5.74256q-.00328,8.22015-.00427,16.44031,0,13.32129.00006,26.64251c2.20691-.81262,4.54071-1.57086,7.05609-2.2464.68329-.70123,1.972-.93274,4.42176-1.32684q4.81621-.7749,9.62036-1.19012c3.59967-.35865,7.53125-.55909,11.87713-.55909,17.93964,0,28.87177,3.39222,38.15784,7.4021.61054-1.06878.45886-1.80871-1.21869-2.2962-6.37555-1.85272-6.77484-3.54608-1.95343-8.21027q11.43156-11.05882,22.96283-22.01471a7.39453,7.39453,0,0,1,1.91242-1.36639,90.74841,90.74841,0,0,1-10.66956-3.9555A22.22373,22.22373,0,0,1,491.64625,410.48489Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M417.67707,293.412a18.87075,18.87075,0,0,0-37.72839-.96045c-.3172,11.24109,7.55853,19.34986,19.06469,19.62885C409.01221,312.32284,417.43043,303.90249,417.67707,293.412Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M240.43684,357.81717q-2.34394.56469-4.6955,1.2304c-6.57947,1.86231-12.72058,5.0011-18.86987,7.96967a85.487,85.487,0,0,1-13.12415,5.04156c8.98975-1.91784,15.54749-5.004,22.33032-8.20068A128.72432,128.72432,0,0,1,240.43684,357.81717Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,356.40109c-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-7.88782-3.71863-15.46937-7.28839-26.93274-9.04254-.11274.24121-.22522.4826-.35462.71564A13.249,13.249,0,0,1,446.40247,364.52a3.40047,3.40047,0,0,1-1.3244-.51715c-4.0766-3.46509-8.93823-2.76294-13.67084-2.5456a145.18227,145.18227,0,0,1-16.01208.15113c-2.3587-.1521-2.93317.70684-2.92359,2.962q.07333,17.23536.05091,34.47107c1.99322-.74255,4.08887-1.44141,6.32989-2.07428.13117-1.59051.714-1.75946,3.37146-2.21966,18.05109-3.12592,35.932-2.95844,53.45587,3.064,7.82514,2.68933,15.10322,6.67615,22.76435,9.76044,1.09625.44134,2.18554.90014,3.39251,1.39807-.06726.07782-.12261.14111-.17242.19794a74.577,74.577,0,0,0,13.60217,3.7113c-.04162-.14124-.08111-.2702-.12359-.41791a129.65539,129.65539,0,0,0,18.80407,1.301,90.35546,90.35546,0,0,0,40.79065-9.45612c9.96558-4.861,20.18641-9.03314,31.34485-10.45074a126.50578,126.50578,0,0,1,33.333.15429c11.518,1.58264,21.9101,6.38507,32.28717,11.23407.38269.17884.71021,1.169.89386,2.27613a77.88352,77.88352,0,0,0,25.73029,6.37744c.33178-5.86261.515-11.764.50488-17.70984.00348-6.57013-.22705-13.08307-.63831-19.54566-15.96423-1.30786-25.39477-5.75079-34.56134-10.07141C652.53712,361.341,642.05665,356.40109,620.51368,356.40109Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M576.78919,529.12356a20.14686,20.14686,0,0,0-6.69092,6.31964c-.37762.56385-.6322,1.16675-.137,1.7464a23.34732,23.34732,0,0,0,5.3313,4.682.88174.88174,0,0,0,1.10113-.14764,20.74806,20.74806,0,0,0,5.83368-8.65528C582.31428,530.27926,578.87312,527.92129,576.78919,529.12356Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M646.84675,452.6232c-1.21515-.33576-2.439-.64856-3.68469-.90412-10.39283-2.13232-20.8537-2.29211-31.38-1.56439-12.06036.83374-23.13,4.92072-33.812,10.24652a98.412,98.412,0,0,1-48.795,10.22516,112.23651,112.23651,0,0,1-20.11219-2.4007c-1.0849-.244-1.59979-.54034-1.272-1.33538-2.02924-.52515-3.94171-1.1037-5.7616-1.7229a119.47954,119.47954,0,0,1-7.97,11.39355c-9.49524,11.939-20.73309,21.86926-34.21795,29.00372-10.11261,5.35022-20.37091,10.5033-31.53,13.46228a36.56239,36.56239,0,0,1-8.19916,1.445c-2.50464.078-4.26166,1.35773-5.94074,3.03595-3.77929,3.7771-7.62872,7.4845-11.478,11.1908q-3.95938,3.81216-7.93152-.05585-6.4238-6.26733-12.77643-12.60693a6.78779,6.78779,0,0,0-3.68048-1.99469c-20.80359-4.064-38.77234-13.92633-54.96387-27.25025A122.73,122.73,0,0,1,292.256,453.8287a8.04176,8.04176,0,0,0-2.27118-2.92157q-2.17374-.438-4.55408-.77789c-.25946.038-.52563.08209-.8045.13708a4.65338,4.65338,0,0,1-4.06561-.69207c-2.13233-.18671-4.39295-.31452-6.80219-.37531.20618.906-.73071.74164-1.34113.72553-4.37793-.1156-8.75164-.16925-13.13488-.074q-1.16547.02537-2.32093.08759c-12.56323,1.5719-20.48614,5.30139-28.752,9.197-9.23547,4.35235-18.7392,8.82519-34.70685,10.20892-.9057.14124-1.81518.27136-2.733.3761-19.64069,2.24109-38.77521.92053-56.92139-7.754-.65436-.31281-1.328-.51855-1.51776-1.34991-.33179-1.45343-.67169-2.913-1.02692-4.43244a78.00412,78.00412,0,0,0-27.96411-6.77826,299.7383,299.7383,0,0,0,295.54444,247.1543c141.47577-.04816,259.20587-97.47815,291.28753-228.12329-11.74224-1.93024-19.66131-5.65827-27.39209-9.30237A113.2795,113.2795,0,0,0,646.84675,452.6232ZM216.93623,571.919c-2.82074,2.22028-3.90528,2.03662-6.04407-.76843-.77-1.00989-1.58374-1.99084-2.43213-2.936-1.79944-2.00458-1.74823-3.53821.34-5.26191,3.49952-2.88867,7.04395-5.72284,10.55591-8.59655.51044-.41767,1.48267-.74366,1.14814-1.52979-.28565-.67132-1.24915-.592-1.947-.54706-1.58715.10242-3.17193.26233-4.75213.44648-5.27234.61444-8.39667-3.10376-6.81183-8.15241.76086-2.42389,1.57434-4.83118,2.36243-7.247-.00074-.1748.00006-.34857.00085-.5224l-.30347.22363c-4.17114,2.65839-7.71533,6.1048-11.55114,9.18482-.62055.49829-1.23731,1.00568-1.8924,1.45569a2.72573,2.72573,0,0,1-3.36578.05444,16.46026,16.46026,0,0,1-5.19666-6.69391c-.63165-1.65417.81665-2.77234,1.98346-3.71777,5.3205-4.311,10.69275-8.55823,16.00452-12.87988q6.20452-5.04822,12.29706-10.23291c1.61615-1.38068,3.02289-1.57154,4.54944.04583.76336.80872,1.64349,1.5058,2.43847,2.28632,2.45246,2.40784,2.746,5.11523,1.46839,8.283-2.13141,5.28454-4.04767,10.65582-6.16877,16.29431,5.56031-.8,10.8241-1.50256,16.06849-2.32843a10.35793,10.35793,0,0,1,10.99029,5.40613c1.02026,1.92315.3468,3.28863-1.20416,4.5393q-10.689,8.61933-21.33472,17.2923C221.73023,567.97427,219.37489,569.9993,216.93623,571.919Zm72.11889,9.16742c-2.62823,10.57587-5.1626,21.17493-7.75586,31.75946-.50781,2.07257-1.31207,4.04456-1.40747,6.24738-.09118,2.10583-1.47876,3.01013-3.61926,2.77759-3.911-.42481-6.89349-4.68421-6.69025-9.82019.51453-1.7724-.39551-2.87964-2.03723-3.86536-3.259-1.9566-6.42389-4.07495-9.57269-6.20783a2.40866,2.40866,0,0,0-3.38037.2284c-3.42371,2.913-4.65637,2.92724-8.4126.39258-.856-.57764-1.66754-1.22107-2.51758-1.808-2.61859-1.80786-2.72394-2.5813-.15167-4.59936,10.4508-8.199,20.95984-16.324,31.43011-24.49842a3.91184,3.91184,0,0,1,5.21045-.18158c2.38666,1.68122,5.24457,2.61127,7.41205,4.67566A4.63191,4.63191,0,0,1,289.05512,581.08639Zm69.34406,28.72895c-2.75873,9.72839-5.53766,19.45092-8.26831,29.18719-.53626,1.91211-.89728,3.87372-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68921,2.0617c-6.48553-.48132-8.094-1.4942-9.7807-7.0473-1.81854-5.98712-3.99835-11.86469-6.04162-17.78284a23.37065,23.37065,0,0,0-1.13672-2.25226c-1.38007,5.0849-2.68274,9.53174-3.7854,14.02759-1.80652,7.3656-2.48346,7.06977-8.85968,5.2735-4.04834-1.1405-4.66589-2.20117-3.4867-6.34491,3.31141-11.63684,6.93665-23.189,9.59833-35.00256a2.5467,2.5467,0,0,1,3.026-2.2757c5.63513.30878,7.73993,1.8891,9.51648,7.23566q3.29434,9.91379,6.60419,19.82251l.517-.02533c1.43768-5.3819,2.88659-10.76087,4.30932-16.14673,1.08246-4.09778,2.22059-4.75146,6.34736-3.57513.613.17474,1.2268.34655,1.84014.52C359.116,604.53134,359.63459,605.45865,358.39918,609.81534Zm66.33374,41.3056a31.21624,31.21624,0,0,0-3.31543.3045c-3.30426.52423-5.34619-.459-6.19922-3.69092-.6695-2.53692-2.11316-2.97674-4.3595-2.85253-3.49542.19329-7.0022.30114-10.50146.25262-1.79334-.02478-2.9812.57135-3.38044,2.28009-.84252,3.60675-7.48266,6.07221-10.763,5.31494-2.13043-.49182-2.33429-2.02453-1.73687-3.91229q3.6339-11.48382,7.18567-22.99359c1.39331-4.48065,2.83593-8.94776,4.12365-13.45886.82416-2.887,2.28492-4.7215,5.527-5.02057,1.6427-.15155,3.29694-.43323,4.68848-.59784,4.03882-.02161,6.27331,2.15875,7.75213,5.32031,2.355,5.035,4.13831,10.30029,6.11536,15.48669q3.77024,9.89008,7.47845,19.80378C428.44544,650.30307,427.943,650.959,424.73292,651.12094Zm61.93072-14.93512c-7.67676,5.64844-18.118,5.75622-25.14856.29059-2.74762-2.136-4.31036-5.11835-5.58221-8.20349a69.40878,69.40878,0,0,1-3.74182-12.5398c-1.08252-5.28534.51916-9.8949,4.1311-13.84473a23.66261,23.66261,0,0,1,24.96265-6.097,14.1232,14.1232,0,0,1,6.80536,5.42371c1.07153,1.55883.6936,2.768-1.03547,3.36761-4.1314,1.43311-8.16992,2.86017-12.70208.95325a7.46405,7.46405,0,0,0-10.24408,7.86706,28.5953,28.5953,0,0,0,5.0581,13.73664c1.8299,2.552,4.45478,3.16534,8.12763,2.03613,3.05664-.93982,5.57428-3.78162,5.65838-6.4289.0409-1.28613-.60827-1.94647-1.90832-1.79455a8.82338,8.82338,0,0,0-1.34155.47052,6.40346,6.40346,0,0,1-1.84473.44171c-3.85175-.09259-2.9812-3.74066-4.19263-5.78784-.84564-1.429-.64258-3.15466,1.118-3.83814,4.35645-1.69128,8.76868-3.24963,13.20789-4.71124a2.67,2.67,0,0,1,3.32092,1.69879,33.7795,33.7795,0,0,1,3.35694,13.06592C494.73774,628.50082,491.36121,632.72952,486.66364,636.18582Zm69.22626-38.1579q-9.716,6.94986-19.48462,13.82587c-2.55218,1.8006-3.51459,1.71454-5.33545-.82575q-10.78527-15.04641-21.44122-30.18512c-1.79071-2.54339-1.472-3.71783,1.08862-5.54327q10.209-7.27743,20.41614-14.55725c2.45355-1.75043,3.87207-1.5976,5.57507.887,1.01441,1.48,2.48627,2.75916,2.5838,4.97125.10474,1.08259-.6759,1.82044-1.63635,2.49006-3.8529,2.68634-7.7102,5.36724-11.51977,8.11407-.90979.656-2.306,1.15558-2.02369,2.64941a5.73405,5.73405,0,0,0,2.79834,3.70954c.88221.55121,1.7956-.14575,2.59229-.72235,3.67541-2.65961,7.40515-5.24591,11.03442-7.96649a2.61631,2.61631,0,0,1,3.97364.31378c.2749.28857.59191.54168.8396.851,4.21167,5.259,3.48754,6.08032-.75293,8.83618-2.93287,1.90607-5.74292,4.00373-8.57776,6.05731-2.4364,1.7649-2.56977,2.71912-.84088,5.09339,1.43859,1.97558,2.45636,2.12512,4.82543.452,3.77033-2.66284,7.44916-5.45562,11.23005-8.1029,2.88971-2.02319,3.739-1.82013,5.85876,1.0108C560.64436,594.12875,560.59193,594.66452,555.8899,598.02792Zm54.19134-57.88849c-2.52319,4.95264-6.37615,8.55329-13.14465,6.19287a43.08247,43.08247,0,0,0-7.00433-1.47143,4.60675,4.60675,0,0,0-5.13135,3.59094c-.28046,1.141.60931,1.39056,1.15033,1.834,2.45709,2.014,4.9649,3.96668,7.46906,5.92273a2.94245,2.94245,0,0,1,.67877,4.40339,35.24864,35.24864,0,0,1-3.30707,4.35467c-1.7594,1.904-3.135,1.98743-5.22522.37018-4.52466-3.50055-8.97589-7.09577-13.48523-10.61627Q565.03877,549.222,557.9372,543.799c-3.63037-2.75855-3.89929-4.2699-1.09234-7.82605,3.49566-4.42865,6.93707-8.90607,10.58752-13.20484,3.03918-3.579,6.7898-6.0296,11.16846-5.85131,8.1596.22143,13.74292,5.3045,14.7619,12.90515.55707,4.15545.70129,4.23864,4.977,4.93512,3.38171.551,6.749,1.20227,10.10516,1.89416C610.814,537.13962,611.18531,537.9722,610.08124,540.13943Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,398.65255c-20.44885,0-30.837,4.502-41.35242,9.44184-.05877.02972-.1181.05737-.17682.08722-2.29156,1.16473-4.60614,2.228-6.93908,3.21075-9.48011,4.20923-20.47535,7.88617-39.04731,7.88617a99.68618,99.68618,0,0,1-23.72845-2.55432,6.72887,6.72887,0,0,1,.844,2.03717q4.00782,15.95288,7.797,31.96039c.87878,3.70355-1.83844,6.2522-5.5744,5.41785a12.16764,12.16764,0,0,1-1.82672-.5459c-1.85224-.73389-2.9823.02093-3.87189,1.64984-.32111.588-.64917,1.17145-.97632,1.75549,7.04968,2.2511,15.48694,3.78143,27.33679,3.78143,21.08887,0,31.37207-4.84668,42.25977-9.97753,11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,4.33746,0,8.26263.19959,11.85681.55695a92.46681,92.46681,0,0,1,31.39307,8.26813c1.10974.51916,3.04547.76483,3.05047,1.93213.00055.12573-.00866.252-.01275.37805,7.28058,3.42523,14.45874,6.6546,24.96331,8.31848a299.5184,299.5184,0,0,0,6.25483-42.72559c-16.07624-1.32776-25.57868-5.80371-34.81433-10.15686C652.21485,403.54611,641.833,398.65255,620.51368,398.65255Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M741.65211,284.95639c-12.10743-37.30194-13.65436-80.3277-36.25013-111.38007-22.82257-31.35138-63.41442-46.02673-94.77618-68.83905-31.05231-22.5957-57.42255-56.81415-94.72461-68.92157-35.98187-11.68457-77.26471.10315-117.145.10315s-81.163-11.78772-117.145-.10315c-37.30194,12.10742-63.67224,46.32587-94.72455,68.92157-31.36181,22.81232-71.95361,37.48767-94.77624,68.83905-22.59576,31.05237-24.1427,74.07813-36.25012,111.38007-11.66394,35.95105-36.0954,71.53076-36.0954,111.38006,0,39.84937,24.41083,75.38782,36.0954,111.38007,12.10748,37.31232,13.65442,80.33807,36.25012,111.38007,22.82263,31.36181,63.41449,46.02679,94.77624,68.84942,31.05231,22.59577,57.42261,56.80383,94.72455,68.92157,35.98194,11.68463,77.26477-.1134,117.145-.1134s81.163,11.798,117.15528.1134c37.29162-12.11774,63.662-46.32587,94.71429-68.92157,31.36176-22.82263,71.95361-37.48767,94.77618-68.84942,22.59577-31.05231,24.1427-74.07807,36.25013-111.38007,11.66406-35.951,36.09539-71.4895,36.09539-111.38007C777.7475,356.45627,753.31617,320.90744,741.65211,284.95639ZM399.10249,725.20266c-181.87952.0962-328.80518-146.74206-329.12958-329.121C70.6446,213.94919,216.27906,70.56717,392.5182,67.529c187.22821-3.22754,332.834,146.93811,334.99609,324.238C729.76447,576.28952,581.35535,725.10629,399.10249,725.20266Z\"/\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "1.15.0" + }, + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json b/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json index 917287a185d..6ad2aac0402 100644 --- a/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json +++ b/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#215276", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 792 792\"\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1, .cls-2 {\n fill: none;\n }\n .cls-2 {\n clip-path: url(#clip-path);\n }\n .cls-3 {\n clip-path: url(#clip-path-2);\n }\n .cls-4 {\n fill: #fff;\n }\n .cls-5 {\n fill: #326ce5;\n }\n .cls-6 {\n mask: url(#mask);\n }\n .cls-7 {\n fill: #fdfdfe;\n }\n \u003c/style\u003e\n \u003cclipPath id=\"clip-path\"\u003e\n \u003cpolygon class=\"cls-1\" points=\"-512.547 -72.522 -511.547 -72.522 -512.547 -71.522 -512.547 -72.522\"/\u003e\n \u003c/clipPath\u003e\n \u003cclipPath id=\"clip-path-2\"\u003e\n \u003cpolygon class=\"cls-2\" points=\"-514.547 -74.522 -515.547 -74.522 -514.547 -75.522 -514.547 -74.522\"/\u003e\n \u003c/clipPath\u003e\n \u003cmask id=\"mask\" x=\"95.45997\" y=\"220.56415\" width=\"1145.07974\" height=\"588.06611\" maskUnits=\"userSpaceOnUse\"\u003e\n \u003cg id=\"mask-2\" data-name=\"mask\"\u003e\n \u003cg id=\"g3823\"\u003e\n \u003cpath id=\"path3819\" d=\"M946.5066,220.56415c-162.388,0-294.033,131.64507-294.033,294.03307s131.645,294.03305,294.03305,294.03305,294.03311-131.66566,294.03311-294.033S1108.89464,220.56415,946.5066,220.56415Zm-.0722,562.49c-148.31081,0-268.35373-120.10486-268.3847-268.41564S798.41233,245.8825,946.816,246.15063s268.28159,120.39361,268.1372,268.65286S1094.72463,783.09541,946.4344,783.05412Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/mask\u003e\n \u003c/defs\u003e\n \u003cg id=\"Text\"\u003e\n \u003cg class=\"cls-3\"\u003e\n \u003cg id=\"g3878\"\u003e\n \u003cg id=\"Text_and_detail\" data-name=\"Text and detail\"\u003e\n \u003cpath id=\"Circle\" class=\"cls-4\" d=\"M382.15266,82.87846c-172.4,0-312.16,139.76-312.16,312.16,0,172.4,139.76,312.16,312.16,312.16s312.16-139.72,312.16-312.16-139.76-312.16-312.16-312.16Zm-.08,597.15994c-157.44,0-284.89-127.51-284.92-284.95,0-157.61,127.78-285.3,285.33-285,157.55005.3,284.80994,127.8,284.67005,285.22C667.01258,552.7284,539.51258,680.08839,382.07264,680.0384Z\"/\u003e\n \u003cg id=\"LETTERS\"\u003e\n \u003cpath id=\"path3851\" class=\"cls-4\" d=\"M238.15266,536.47846c-1-3.45-5.75-6.88-9.44-6.42-5.24.67-10.46,1.54-16.76,2.48,2.32-6.15,4.28-11.4,6.28-16.65,1.73-4.56-2-6.77-4.34-9.21s-4.17.64-5.76,1.9c-8.47,6.71-16.68,13.75-25.23,20.35-4.06,3.13-1,4.95.64,7.2s3.31,4.78,6.66,1.83c3.86-3.39,7.94-6.54,12-9.83.15.38.29.56.25.68-.8,2.32-1.67,4.62-2.45,6.95-1.63,4.92,1.52,8.51,6.69,7.7,2.15-.34,4.34-1,6.9.1-4.16,3.41-7.77,6.61-11.63,9.46-3.17,2.34-1.65,4.25.26,6s2.71,6.31,6.8,3q13.79-11.12,27.49-22.31C237.45264,538.93842,238.66267,538.21845,238.15266,536.47846Z\"/\u003e\n \u003cpath id=\"path3853\" class=\"cls-4\" d=\"M405.30262,200.08845c6.54,2.7,9.13,1.46,10.48-5.3.3-1.47.57-2.93.93-4.38.29-1.18,0-3.17,1.81-2.92s4.13-.12,4.79,2.58,1.48,5.09,2.22,7.63c2.08,7,3.51,8.09,10.64,8.46,2.68.14,3.28-.77,2.57-3.16-1.12-3.81-2.09-7.67-3.28-11.46-.55-1.73-1-2.75,1.37-3.74,5.78-2.44,7.34-7.68,7.75-13.07,0-6.66-4-11.53-11.48-13.53-6.08-1.62-12.32-2.63-18.48-4-2.3-.5-3.45.43-3.88,2.63-2.36,12-4.76,24.08-7.09,36.14-.31,1.63-.54,3.22,1.65,4.12Zm17.54-31c5.05-.51,9.92,2.41,9.87,5.4s-1.8,4.44-5.19,4.53c-2.09-1.76-6.94,1.1-7.65-3.37-.3-1.89-1-6.11,2.97-6.52Z\"/\u003e\n \u003cpath id=\"path3855\" class=\"cls-4\" d=\"M339.45264,591.29847c-2.84-.93-5.74-2.1-6.74,2.62-1.09,5.19-2.75,10.25-4.47,16.5-2.63-7.82-5.07-14.52-7.1-21.34-1.33-4.46-5.15-4.42-8.37-5-3.55-.58-2.91,3-3.47,5-3,10.36-5.58,20.86-8.8,31.16-1.58,5.08,2.17,4.62,4.67,5.49,2.66.91,5.47,2,6.48-2.4,1.21-5.27,2.82-10.45,4.45-16.34.67,1.54,1.13,2.42,1.44,3.34,2,6,4.09,11.93,6,17.94,1.37,4.44,5.37,4.17,8.56,4.61s2.53-3,3.06-4.81c3-10.38,5.53-20.89,8.8-31.17,1.49-4.98-1.96-4.76-4.51-5.6Z\"/\u003e\n \u003cpath id=\"path3857\" class=\"cls-4\" d=\"M580.31263,528.04847c-3.28-.47-6.51-1.44-9.80005-1.75-2.71-.25-3.39-1.19-3.48-4-.22-7-6.55005-12.74-13.43994-12.82-4.73-.13-8.35,2.24-11.25,5.56-3.61,4.13-6.71,8.7-10.33,12.82-2.46,2.81-2.15,4.55.78,6.76,8.76,6.62,17.44995,13.35,25.93994,20.3,3,2.4,4.51,2.15,6.72-.86,4-5.45,4.16-5.32-1.23-9.5-1.18005-.92-2.42-1.78-3.5-2.81-.83-.79-2.89-1.11-1.73-2.91.93994-1.45,1.75-3.35,4.16-2.86s5,.56,7.32995,1.41c5.37,2,8.71-.09,11.63-4.54,1.93005-2.89,2.03-4.26-1.8-4.8Zm-30,5.43c-.75.06-6.13-4.56-6.08-5.23.13-1.76,6.28-7.65,8-7.65,2.31006.46,4,1.61,4.18994,4.15C556.5326,526.29847,551.45264,533.37849,550.31263,533.47846Z\"/\u003e\n \u003cpath id=\"path3859\" class=\"cls-4\" d=\"M331.71265,201.07847c.35,2,1,3.6,3.49,3.21,9-1.56,18.06-2.91,27-4.77,4.72-1,1.47-4.56,1.52-7,.05-2.61-1.37-3.4-3.93-2.9-4.89.95-9.85,1.6-14.74,2.57-2.54.5-3.21-.66-3.45-2.83-.21-1.93-.49-3.43,2.3-3.74,4.13-.44,8.17-1.61,12.3-2.05,4.47-.48,3.65-3.29,3.17-6.13s-1.08-5.17-5-4.09c-3.67,1-7.56,1.16-11.26,2.09-2.6.66-3.87.5-4.41-2.54-.59-3.28,1.23-3.55,3.55-3.9,4.11-.61,8.2-1.4,12.31-2,2.63-.4,4.65-1.13,3.59-4.44-.85-2.66.36-6.86-5.13-5.72-7.81,1.63-15.68,3-23.58,4-3.78.48-4.3,2.17-3.74,5.31q3.045,17.505,6.01,34.93Z\"/\u003e\n \u003cpath id=\"path3861\" class=\"cls-4\" d=\"M465.13264,596.01844a88.49049,88.49049,0,0,1-8.92,3.07c-2.51.8-4.32,1.82-2.82,5,1.19,2.46.87,6.55,5.62,4.65.87-.35,1.8-1.17,2.65-.11.85,1.06.29,2.32-.13,3.32-1.22,2.87-3.78,4.1-6.65,4.6a6.21878,6.21878,0,0,1-6.67-3.37,32.7898,32.7898,0,0,1-4-11.2c-.93-5.83,4.62-10.93,9.91-8.38,4.36,2.1,7.64.42,11.34-.66,2.53-.74,2.54-2.25,1.08-4.09-3.38-4.26-8-5.61-13.24-5.83a22.67985,22.67985,0,0,0-15,5.6c-5,4.48-7,10.16-5,16.65,2.53,8.49,4,18,14.56,20.8,8.1,2.13,15.24-.38,21-6.12,6.23-6.24,4.72-13.51,2-20.92-1.19-3.16-2.35-4.5-5.73-3.01Z\"/\u003e\n \u003cpath id=\"path3863\" class=\"cls-4\" d=\"M527.1526,577.12849c-3.66,2.86-7.64,5.31-11.31006,8.17-2,1.56-3,1.07-4.29-.81-1.29-1.88-1.69-3,.46-4.41,3.32995-2.19,6.52-4.59,9.76-6.91,1.06006-.76,2.34-1.38,2.22-3.22a13.53972,13.53972,0,0,0-4.18994-5.8c-1.86-1.31-3.30005.69-4.75,1.69-3,2.08-6.14,4-8.94,6.34-2.33,1.94-3,.17-4.15-1.21-1.38-1.61-1.4-2.61.53-3.87,3.75-2.45,7.22-5.33,10.99994-7.71,3.1-1.94,2.43994-3.82.62-6.06-1.61-2-2.59-5-6.15-2.3-6.52,4.86-13.22,9.49-19.89,14.17-2.1,1.47-2.19,2.93-.72,5,6.9,9.57,13.71,19.2,20.54,28.83,1.24,1.74,2.45,2.43,4.49994.94q10.26-7.5,20.68994-14.75c3.27-2.27,1.29-4.16-.11-6.21-1.4-2.05-2.73-4.31-5.82-1.88Z\"/\u003e\n \u003cpath id=\"path3865\" class=\"cls-4\" d=\"M268.85267,560.89845c-1.4-1-2.88-.53-4.14.45q-15.18007,11.8-30.33,23.64c-1.33,1-2.32,2.47-.4,3.54,3.54,2,6.78,7,11.49,1.72a1.59,1.59,0,0,1,2.18-.47c3.76,2.46,7.55,4.87,11.3,7.33,1,.68.67,1.74.55,2.72-.53,4.29,2.44,9.12,6.71,9.35,4.46.23,2.36-4.48,3.76-6.69a3.001,3.001,0,0,0,.34-.94c2.6-10.65,5.2-21.31,8-32.85-1.12-4.32-6.07-5.22-9.46-7.8Zm-6.4,26.72c-7.81-4.59-7.81-4.59-1.47-9.65,1.28-1,2.6-2,4.48-3.44A56.33068,56.33068,0,0,1,262.45264,587.61842Z\"/\u003e\n \u003cpath id=\"path3867\" class=\"cls-4\" d=\"M255.94263,223.82847c5,6.94,12.68,9,20.82,6,8.46-3.06,15-11.32,14.66-18.87a20.55043,20.55043,0,0,0-1.24-5.29,2.11,2.11,0,0,0-2.13-1.73c-2.9,0-8.23,5.19-8.27,8.3-.05,4.19-2.73,6.29-6.08,7.63-3.17,1.26-6,0-7.87-2.63a73.14334,73.14334,0,0,1-5.94-9.75c-1.4-2.87-1.14-6,1.47-8.23s5.84-3.74,9.55-1.71c2.6,1.43,9.61-1,11.1-3.53,1-1.62-.28-2.53-1.09-3.43a13.88,13.88,0,0,0-10.8-4.68c-13.38.05-23.81,10.35-22.4,21.61.8,6.34,4.73,11.34,8.22,16.31Z\"/\u003e\n \u003cpath id=\"path3869\" class=\"cls-4\" d=\"M398.01264,603.60847c-3.39-8.82-5.72-10-14.79-8a3.8801,3.8801,0,0,0-3.27,2.63q-5.7,18.24-11.36,36.54c-.33,1.07-.81,2.33.47,3.17,2.73,1.8,9.9-.72,11.13-3.89.51-1.32.52-2.93,2.71-2.89,4,.08,8,0,12-.19,1.42-.06,2.3.48,2.55,1.76.77,4,3.17,5.18,6.48,4.32,6.77-.17,6.8-.19,4.58-6q-5.24-13.7601-10.5-27.45Zm-10.56,18.07c-3,0-3.44-.84-2.54-3.39,1.09-3.12,2-6.3,3.27-10.36,1.33,3.4,2.31,5.85,3.24,8.31,2.08,5.57,2.03,5.38-3.97,5.44Z\"/\u003e\n \u003cpath id=\"path3871\" class=\"cls-4\" d=\"M485.89265,229.15846c2.34,1.28,4.57,4.69,7.27.18,3.57-6,7.44-11.79,11.16-17.68,4.48-7.08,4.6-7.29,11.80005-2.76,3.82995,2.42,4.84-.19,6.44995-2.52,1.72-2.5,2.4-4.41-1-6.41q-12-7.15-23.55-14.92c-3.27-2.18-4.89-1.6-7,1.64-2.34,3.57-1.86,5.47,1.76,7.39,2.1,1.11,4.45,2.13,5.9,4.21-.74,1.19-1.34,2.19-2,3.17-4.53,7.16-8.93,14.4-13.62,21.45-2.52,3.88.39,4.91,2.83,6.25Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"New_Anchor\" data-name=\"New Anchor\"\u003e\n \u003cpath id=\"path3874\" class=\"cls-4\" d=\"M495.34266,446.89845c-2.57-10.54-5.11-20.92-7.68-31.42a3.2,3.2,0,0,0-5.33-1.56l-24.72,23.66a3.06,3.06,0,0,0,1.26,5.14c.92.26,1.82.51,2.74.7,2,.43,1.8,1.1.87,2.51a65.58921,65.58921,0,0,1-20,19.58l-.2.12a86.78041,86.78041,0,0,1-21.7,7,159.35362,159.35362,0,0,1-23.53,2.72,1.84,1.84,0,0,1-1.89929-1.77875q-.00147-.0456-.00073-.09125v-110.38a1.08,1.08,0,0,1,1.08-1.08h0c1,0,2.22.2,5.15.17,5.76-.06,11.76-.06,17.54-.4,1.88-.11,2.93-.05,4.13.85a12.35,12.35,0,0,0,16.71-1.29,12.52,12.52,0,0,0,.11-16.76,12.3,12.3,0,0,0-16.66-1.58,4.07008,4.07008,0,0,1-2.53,1.08q-12.0801-.06-24.14,0a1.90009,1.90009,0,0,1-1.39-.37v-12.62a1.79987,1.79987,0,0,1,.42-1.18,6.41962,6.41962,0,0,1,2-1.41c13-6.6,19.74-17.44,19.75-31.87,0-22.83-22.27-39.44-44.29-33.46-17.46,4.74-28.8,22.08-25.51,39.77,2.42,13,10.07,22.1,22.51,26.92a6.58893,6.58893,0,0,1,1.33.66,1.8,1.8,0,0,1,.71,1.47v10.32a1.78,1.78,0,0,1-1.77991,1.78012l-.02008-.00012c-8.65-.1-17.31-.06-26,0a5.53,5.53,0,0,1-3.31-1.12,12.24,12.24,0,0,0-16.62,1.7,12.37,12.37,0,0,0,16.73,18.07,5.08,5.08,0,0,1,3.3-1.08c8.39,0,16.79.12,25.18,0a3.19,3.19,0,0,1,2.17.46,1,1,0,0,1,.31.76v109.81a1.85,1.85,0,0,1-1.85388,1.84613q-.07315-.0002-.14612-.00611a192.44321,192.44321,0,0,1-30.22-5,92.78849,92.78849,0,0,1-17.68-6.21,1.5603,1.5603,0,0,1-.28-.16,66.87033,66.87033,0,0,1-19.54-21.38,1.38,1.38,0,0,1,1-2.16l2.65-.54a3.08,3.08,0,0,0,1.6-5.08l-23.26-25.35a3,3,0,0,0-5.13,1.14c-3.44,10.89-6.79,21.53-10.19,32.32a3.35,3.35,0,0,0,3.94,4.28l1.8-.41a5.12,5.12,0,0,1,5.69,2.64c13.38,26,33.5,44.81,60.12,56.7,10.4,4.65,14.52,6,23.5,7.37a1.77963,1.77963,0,0,1,1,.51l13.67,13.55a4.91,4.91,0,0,0,6.85,0l13.28-13a1.88009,1.88009,0,0,1,1.12-.52c13.3-1.25,19.23-4.54,33.54-11.09,22.15-10.13,39.74-27.76,51.06-49.32,1-1.92,1.88-2.15,3.58-1.58.65.22,1.31.43,2,.63a4.12,4.12,0,0,0,5.21-4.98Zm-114.1-131.83a17.72,17.72,0,0,1-17.0863-18.33182q.00284-.07909.00629-.15817c.48-10.46,9.18-18.18,19-17.43,10.34.8,17.46,9.11,16.94,18.69-.56,10.42-9.1,17.96-18.86,17.23Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"Background_wavy_outline\" data-name=\"Background wavy outline\"\u003e\n \u003cg id=\"path3838\"\u003e\n \u003cpath class=\"cls-5\" d=\"M777.74751,396.3365c0,39.89055-24.43136,75.42907-36.09539,111.38006-12.10741,37.302-13.65436,80.32774-36.25011,111.38007-22.82261,31.36171-63.41444,46.02679-94.77621,68.84939-31.05234,22.59569-57.42267,56.80386-94.71428,68.92159-35.99228,11.68462-77.27507-.11342-117.1553-.11342s-81.16308,11.798-117.145.11342c-37.302-12.11773-63.67226-46.32584-94.7246-68.92159-31.36171-22.8226-71.9536-37.48761-94.77621-68.84939-22.59569-31.042-24.14263-74.06775-36.25011-111.38007C44.17571,471.72428,19.76493,436.18582,19.76493,396.3365s24.43142-75.42907,36.09539-111.38007c12.10741-37.302,13.65436-80.32773,36.25011-111.38007,22.82261-31.35142,63.41444-46.02678,94.77621-68.83907,31.05234-22.59572,57.42261-56.81414,94.7246-68.92157,35.982-11.6846,77.26475.10313,117.145.10313s81.16308-11.78773,117.145-.10313c37.30206,12.10743,63.67226,46.32585,94.7246,68.92157,31.36177,22.81229,71.9536,37.48765,94.77621,68.83907,22.59575,31.05234,24.1427,74.07808,36.25011,111.38007C753.31615,320.90743,777.74751,356.45626,777.74751,396.3365Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"Waves\"\u003e\n \u003cg class=\"cls-6\"\u003e\n \u003cg id=\"g3847\"\u003e\n \u003cg id=\"path3841\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,377.02659c-22.21484,0-33.49121-5.31543-44.39746-10.45606-11.09472-5.22949-21.57519-10.16943-43.11816-10.16943-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-11.09473-5.23047-21.5752-10.17041-43.11915-10.17041-21.543,0-32.0205,4.93994-43.11328,10.16943-10.90332,5.14063-22.17773,10.45606-44.39209,10.45606-22.21484,0-33.48925-5.31543-44.39257-10.45606C302.50147,361.341,292.02442,356.4011,270.481,356.4011c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508s-33.48291-5.31494-44.38672-10.45508C127.48389,361.341,117.0044,356.4011,95.46,356.4011v-3c22.21582,0,33.49267,5.31592,44.398,10.457,11.09326,5.229,21.5708,10.16846,43.10742,10.16846s32.01709-4.93945,43.1123-10.16846c10.90821-5.14111,22.1875-10.457,44.40332-10.457,22.21485,0,33.48926,5.31543,44.39258,10.45606,11.09278,5.22949,21.56983,10.16943,43.11328,10.16943,21.54248,0,32.02-4.93994,43.1128-10.16943,10.90332-5.14063,22.17773-10.45606,44.39257-10.45606,22.21582,0,33.49219,5.31592,44.39844,10.457,11.09278,5.229,21.57031,10.16846,43.10742,10.16846,21.53614,0,32.01661-4.93945,43.11231-10.16846,10.9082-5.14111,22.1875-10.457,44.40332-10.457,22.21484,0,33.49121,5.31543,44.39746,10.45606,11.09473,5.22949,21.5752,10.16943,43.11816,10.16943Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"path3843\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,419.27854c-22.43847,0-33.81836-5.36426-44.82421-10.55176-10.99024-5.18066-21.37208-10.07421-42.69141-10.07421-21.32031,0-31.7041,4.89355-42.69824,10.07519-11.00489,5.1875-22.38575,10.55078-44.81739,10.55078-22.43261,0-33.81054-5.36328-44.81347-10.55078-10.99121-5.18164-21.37207-10.07519-42.69239-10.07519-21.31933,0-31.69824,4.89355-42.68652,10.07421-11.00293,5.1875-22.38037,10.55176-44.81885,10.55176-22.439,0-33.8164-5.36426-44.81884-10.55176-10.98877-5.18066-21.36768-10.07421-42.687-10.07421-21.3208,0-31.7041,4.89355-42.69775,10.07519-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078s-33.81006-5.36328-44.813-10.55078c-10.99072-5.18164-21.37207-10.07519-42.69238-10.07519v-5c22.43994,0,33.81933,5.36474,44.82471,10.55273,10.98876,5.17969,21.36767,10.07324,42.68066,10.07324s31.69482-4.89355,42.686-10.07324c11.00782-5.188,22.38965-10.55273,44.82959-10.55273,22.439,0,33.81641,5.36425,44.81885,10.55175,10.98877,5.18067,21.36768,10.07422,42.687,10.07422,21.31885,0,31.69776-4.89355,42.686-10.07422,11.00293-5.1875,22.38086-10.55175,44.81933-10.55175,22.43946,0,33.81934,5.36474,44.82422,10.55273,10.98926,5.17969,21.36817,10.07324,42.68164,10.07324,21.3125,0,31.69434-4.89355,42.68555-10.07324,11.00781-5.188,22.39063-10.55273,44.83008-10.55273,22.43848,0,33.81836,5.36425,44.82422,10.55175,10.99023,5.18067,21.37207,10.07422,42.6914,10.07422Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"path3845\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,469.78049c-22.66211,0-34.1455-5.4121-45.25-10.64648-10.88671-5.13184-21.16992-9.97852-42.26562-9.97852-21.09668,0-31.38184,4.84766-42.27149,9.9795-11.10546,5.2334-22.58886,10.6455-45.24414,10.6455-22.65625,0-34.13671-5.4121-45.24023-10.6455-10.88574-5.13184-21.16895-9.9795-42.26563-9.9795-21.0957,0-31.376,4.84668-42.26074,9.97852-11.10156,5.23438-22.58252,10.64648-45.24463,10.64648-22.66308,0-34.14306-5.4121-45.2456-10.64648-10.88428-5.13184-21.16455-9.97852-42.26026-9.97852-21.09668,0-31.38232,4.84766-42.27148,9.9795-11.105,5.2334-22.58838,10.6455-45.24414,10.6455-22.65625,0-34.13672-5.4121-45.23926-10.6455-10.88672-5.13184-21.16943-9.9795-42.26611-9.9795v-7c22.66406,0,34.14648,5.41309,45.251,10.64747,10.88428,5.13086,21.16553,9.97753,42.2544,9.97753s31.37256-4.84667,42.25976-9.97753c11.10694-5.23438,22.59229-10.64747,45.25586-10.64747,22.6626,0,34.14307,5.41211,45.24561,10.64649,10.88428,5.13184,21.165,9.97851,42.26025,9.97851,21.09473,0,31.37549-4.84667,42.26026-9.97851,11.10156-5.23438,22.582-10.64649,45.24511-10.64649,22.66407,0,34.14649,5.41309,45.251,10.64747,10.88477,5.13086,21.166,9.97753,42.25488,9.97753s31.37207-4.84667,42.25977-9.97753c11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,22.66211,0,34.14551,5.41211,45.25,10.64649,10.88672,5.13184,21.16992,9.97851,42.26562,9.97851Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"wQjLs5.tif\"\u003e\n \u003cpath class=\"cls-7\" d=\"M69.97291,396.08172C70.6446,213.94918,216.27906,70.56717,392.5182,67.52905c187.22819-3.22757,332.834,146.93812,334.99608,324.238,2.25017,184.52244-146.15893,333.33921-328.41178,333.43561C217.223,725.29886,70.2973,578.46061,69.97291,396.08172Zm628.85858.10588c.087-165.02914-132.68641-298.09593-296.30859-300.02194C233.12872,94.17171,98.45934,230.62774,98.67461,396.5698A299.75958,299.75958,0,0,0,398.88386,696.55966C565.4402,696.503,699.11342,561.48738,698.83149,396.1876Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M412.51678,420.83544q0,27.77351.00011,55.547c.00009,4.51579.04789,4.50986,4.53561,4.31713a165.17329,165.17329,0,0,0,29.487-4.2981c16.03543-3.6372,27.73135-13.19016,36.84-26.41364.899-1.30519.94647-2.17583-.9482-2.72638-6.37557-1.85276-6.77481-3.54612-1.95345-8.21029q11.4316-11.05884,22.96284-22.01472c2.981-2.84862,5.68513-2.20684,6.67288,1.725q4.00776,15.95289,7.797,31.9604c.87882,3.70353-1.83845,6.25218-5.57439,5.41785a12.16786,12.16786,0,0,1-1.8267-.5459c-1.85224-.73389-2.9823.0209-3.87188,1.64981a133.82736,133.82736,0,0,1-12.57828,19.3174c-9.49524,11.939-20.73307,21.86926-34.218,29.00371-10.1126,5.35023-20.3709,10.5033-31.53,13.4623a36.55951,36.55951,0,0,1-8.19914,1.445c-2.50462.078-4.26165,1.35775-5.94075,3.03594-3.77927,3.77713-7.6287,7.48452-11.47795,11.1908q-3.95936,3.81219-7.93154-.05583-6.42373-6.26729-12.77642-12.607a6.788,6.788,0,0,0-3.68046-1.99465c-20.80362-4.064-38.77235-13.92633-54.96386-27.25025A122.72966,122.72966,0,0,1,292.256,453.82869c-1.79252-3.467-3.72457-4.3321-7.62975-3.56234-3.879.76461-5.91529-1.38023-4.74629-5.14457q5.10108-16.42556,10.32191-32.81382c.95065-2.98756,3.80347-3.611,5.93528-1.29452q11.97693,13.01463,23.87712,26.09993c2.15078,2.35765.90718,5.38157-1.94892,5.68573a16.07623,16.07623,0,0,0-1.85514.45367c-1.88247.43418-2.03016,1.41677-1.09155,2.96479a68.14571,68.14571,0,0,0,19.78648,21.43968c4.39344,2.99136,9.66647,4.45113,14.79768,5.88678a203.78489,203.78489,0,0,0,35.2242,6.41915c2.46668.24052,3.24724-.43626,3.26142-3.12583.03152-5.9855.01018-11.97126.01018-17.95693q.00008-46.92759-.00024-93.85519c-.00006-3.59733-.23705-3.85153-3.72235-3.85454-7.89721-.00678-15.795.04724-23.69137-.03172a12.42517,12.42517,0,0,0-6.52984,1.87989c-5.47079,3.15842-10.90349,2.513-15.6066-1.70228-3.95359-3.5436-5.09-9.6431-2.788-14.96355,2.95926-6.83927,12.14641-9.64767,18.41925-5.58938a11.37135,11.37135,0,0,0,6.50616,1.94147c7.97857-.07857,15.9584-.0228,23.93772-.03314,3.03683-.00395,3.46463-.44242,3.47361-3.45626.00783-2.63366-.11638-5.27441.03978-7.8988.12007-2.01719-.74443-3.00685-2.51544-3.76524-7.2923-3.12258-13.76888-7.34228-18.01393-14.3021-14.78963-24.2479-.19341-51.56636,24.04645-56.40073a37.12876,37.12876,0,0,1,40.17752,19.57806c8.14333,16.34855,4.16244,38.98029-15.70441,49.09212-2.784,1.417-4.08927,3.094-3.77158,6.29807a72.48632,72.48632,0,0,1,.04142,8.85219c-.03473,1.4505.55743,2.016,1.96313,2.01271,8.141-.01891,16.2821-.00684,24.42315-.01286a7.33752,7.33752,0,0,0,3.91345-1.62311,12.88346,12.88346,0,0,1,16.069,1.34006,13.52581,13.52581,0,0,1,2.45849,15.85854,13.24886,13.24886,0,0,1-14.9215,6.27536,3.39939,3.39939,0,0,1-1.32441-.51711c-4.0766-3.46512-8.93825-2.76294-13.67086-2.54561a145.182,145.182,0,0,1-16.01207.15113c-2.35869-.15209-2.93316.70685-2.92357,2.962C412.55133,383.32515,412.51681,402.08037,412.51678,420.83544ZM399.01337,312.08036c9.99882.24248,18.41706-8.17787,18.66371-18.66837a18.87076,18.87076,0,0,0-37.72842-.96046C379.6315,303.69258,387.5072,311.80135,399.01337,312.08036Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M209.05294,537.02758c-4.17115,2.65838-7.71537,6.10479-11.55114,9.18481-.62059.49828-1.23735,1.00568-1.89242,1.45567a2.72568,2.72568,0,0,1-3.36577.05443,16.46006,16.46006,0,0,1-5.19667-6.69386c-.63166-1.65422.81665-2.77233,1.98348-3.7178,5.3205-4.311,10.69275-8.5582,16.00448-12.87986q6.20452-5.04825,12.2971-10.23295c1.61614-1.38066,3.02286-1.57149,4.54943.04584.76332.80872,1.64349,1.50584,2.43847,2.28632,2.45244,2.40787,2.746,5.11525,1.46839,8.283-2.13141,5.28455-4.04769,10.65586-6.16875,16.29435,5.56028-.8,10.82407-1.50256,16.06844-2.32847a10.358,10.358,0,0,1,10.99034,5.40615c1.02021,1.92315.34677,3.28862-1.20421,4.53933q-10.689,8.61926-21.33467,17.29226c-2.40923,1.95752-4.76456,3.98257-7.20322,5.90222-2.82074,2.22031-3.90528,2.03662-6.044-.76845-.77-1.00989-1.58377-1.99084-2.43216-2.936-1.79944-2.00459-1.74822-3.5382.34-5.26187,3.49951-2.88867,7.044-5.72285,10.55594-8.59656.51045-.41766,1.48264-.74365,1.14813-1.5298-.28564-.67134-1.24914-.59206-1.947-.547-1.58713.10242-3.17194.26232-4.75214.44648-5.27235.61439-8.39667-3.10381-6.81184-8.15241.76087-2.42389,1.57437-4.83123,2.36245-7.247-.00076-.1748.00005-.34855.00086-.52237Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M124.83943,400.61821a49.9315,49.9315,0,0,1,9.28427,3.97456c16.3791,8.31538,33.77766,10.14157,51.79721,8.71766,11.63718-.91951,22.39278-4.5979,32.75543-9.69762a100.347,100.347,0,0,1,43.64423-10.81909c16.29382-.20053,31.73817,2.65256,46.40921,9.89727,7.96874,3.935,16.1333,7.504,24.96248,9.2165a114.8072,114.8072,0,0,0,30.22024,1.46737,83.07775,83.07775,0,0,0,16.43728-2.90548c1.22182-.34116,1.48115-.01838,1.53988,1.16962.19139,3.874.26313,3.996-3.41964,4.76233-22.63978,4.71138-44.76095,3.81762-66.01766-6.24183-5.101-2.41392-10.14122-5.01893-15.41254-6.99385a75.00911,75.00911,0,0,0-18.29309-4.28871c-13.72664-1.47319-27.38561-1.2009-40.77338,2.6734-7.05613,2.042-13.66044,5.24007-20.26763,8.3644a92.68582,92.68582,0,0,1-37.55286,9.04313c-11.61992.31812-23.04916-.509-34.20041-3.9568-6.93357-2.14379-13.40275-5.41861-20.0276-8.31306a1.53835,1.53835,0,0,1-1.10171-1.61859C124.88329,403.64318,124.83943,402.21256,124.83943,400.61821Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M464.49871,163.96918c-.26722,6.07518-2.07214,11.27242-8.09521,14.01345-1.78726.81337-2.11038,2.00136-1.5267,3.84864,1.29055,4.08452,2.42882,8.219,3.54669,12.35548.6111,2.26118-.09574,3.30506-2.41985,3.13249-6.32272-.46951-8.90036-.32759-11.10084-7.6666-.84316-2.81211-1.80267-5.59654-2.48866-8.44665-.75683-3.14426-2.67515-3.50892-5.63728-3.39682-1.00754.03815-1.16858.80485-1.33738,1.66094-.539,2.7335-1.11427,5.46345-1.79945,8.16333-.55076,2.17018-1.61989,4.11862-4.0467,4.5225a9.5177,9.5177,0,0,1-7.577-2.10089c-1.30493-1.03064-.72347-2.67881-.45677-4.05477q2.86242-14.76743,5.80084-29.52011c.55421-2.807,1.093-5.61767,1.70464-8.41227.3451-1.577,1.26465-2.65375,3.03621-2.31506,8.41807,1.60929,17.04086,2.49662,24.93126,6.12827C461.92977,154.13513,464.47337,158.614,464.49871,163.96918Zm-26.40908-1.01946c-.19034,3.27377,1.99669,5.87631,5.51242,5.414a13.424,13.424,0,0,1,3.05606.21483c2.06351.20651,3.961-.35826,4.89424-2.52671a4.12054,4.12054,0,0,0-1.13421-5.15448,10.72717,10.72717,0,0,0-7.69731-2.60856C439.55573,158.35407,438.07551,159.84025,438.08963,162.94972Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M342.2831,622.50718c1.43768-5.3819,2.88656-10.76087,4.3093-16.14674,1.0825-4.09775,2.22059-4.75142,6.34736-3.57514.613.17474,1.22679.34657,1.84014.52,4.33612,1.226,4.85469,2.15332,3.61925,6.51-2.75869,9.7284-5.53762,19.451-8.26828,29.1872-.53629,1.91215-.89729,3.87371-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68923,2.0617c-6.48549-.48133-8.094-1.4942-9.78068-7.04728-1.81851-5.9871-3.99838-11.8647-6.04163-17.78282a23.37683,23.37683,0,0,0-1.1367-2.2523c-1.38006,5.0849-2.68277,9.53173-3.78543,14.02762-1.8065,7.36561-2.48343,7.06972-8.85965,5.2735-4.04836-1.1405-4.6659-2.2012-3.48673-6.3449,3.31145-11.63688,6.93669-23.189,9.59838-35.0026a2.54662,2.54662,0,0,1,3.026-2.27568c5.63514.3088,7.7399,1.88912,9.51649,7.23565q3.29431,9.91381,6.60418,19.82249Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M578.60084,516.9168c8.15959.2214,13.74292,5.30449,14.76189,12.90512.55708,4.15545.70132,4.23865,4.977,4.93512,3.38175.551,6.749,1.2023,10.1052,1.89421,2.36909.4884,2.74042,1.321,1.63632,3.48821-2.52315,4.9526-6.37615,8.55329-13.14462,6.19284a43.08717,43.08717,0,0,0-7.00433-1.47141,4.60683,4.60683,0,0,0-5.13139,3.59093c-.28046,1.141.60935,1.39055,1.15035,1.834,2.45709,2.01406,4.96493,3.96667,7.469,5.92273a2.94242,2.94242,0,0,1,.67881,4.4034,35.24644,35.24644,0,0,1-3.30709,4.35463c-1.7594,1.90409-3.135,1.98746-5.22522.37019-4.52461-3.50054-8.97585-7.09574-13.4852-10.61628Q565.03873,549.222,557.9372,543.799c-3.63035-2.75853-3.8993-4.26987-1.09235-7.826,3.49565-4.42865,6.9371-8.90606,10.5875-13.20486C570.47154,519.18909,574.22216,516.73849,578.60084,516.9168Zm3.6265,16.15188c.08694-2.7894-3.35422-5.1474-5.43817-3.9451a20.14664,20.14664,0,0,0-6.69088,6.31964c-.37764.56382-.63221,1.16675-.13705,1.74642a23.347,23.347,0,0,0,5.33129,4.682.88184.88184,0,0,0,1.10117-.14762A20.748,20.748,0,0,0,582.22734,533.06868Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M339.10668,153.64432c.11363-2.74291,1.59552-3.61207,3.57964-3.929,5.02684-.80313,10.06357-1.54646,15.08378-2.38861,3.449-.57858,6.86354-1.36819,10.31791-1.90681,3.59907-.56114,4.29083.01322,5.00182,3.60458,1.20659,6.09468.94468,6.433-5.30021,7.37618-4.00721.60517-8.00728,1.26065-12.00273,1.93935-2.24427.3812-3.12081,1.57071-2.80722,3.63433.41666,2.74187,1.159,3.46113,3.73641,3.06113,4.16211-.64592,8.30616-1.42151,12.43963-2.23482,3.55887-.7003,4.634-.10081,5.46994,3.38356.18473.77.23355,1.57192.36036,2.35664.52068,3.22187-.31037,4.465-3.41809,4.98918-4.00162.675-7.9952,1.42541-12.01857,1.93595-3.898.49463-3.90641,1.94866-3.14429,5.5802.40594,1.93429,2.23337,1.78384,3.75928,1.52138,4.69931-.80821,9.38462-1.69751,14.08133-2.52135.85748-.15042,1.74326-.13772,2.61551-.20656a2.42653,2.42653,0,0,1,1.75536.63731c.57777.47573,2.01651,7.61077,1.68105,8.245-.6356,1.20159-1.85356,1.45848-3.01378,1.67022-7.97,1.45463-15.94738,2.86841-23.92264,4.29376-1.0162.18159-2.031.37405-3.05168.52683-3.15995.473-4.05143-.11-4.597-3.22293-1.63376-9.32226-3.22231-18.65244-4.82727-27.97976C340.26542,160.40793,339.649,156.80528,339.10668,153.64432Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M494.66911,622.29209c.06864,6.20874-3.30787,10.43744-8.00549,13.89373-7.67676,5.64843-18.118,5.75624-25.14853.29063-2.74761-2.136-4.31035-5.11835-5.58222-8.20351a69.40613,69.40613,0,0,1-3.7418-12.53979c-1.08255-5.28537.51914-9.8949,4.1311-13.84474a23.66265,23.66265,0,0,1,24.96263-6.097,14.12324,14.12324,0,0,1,6.80536,5.42375c1.07153,1.5588.6936,2.768-1.03548,3.3676-4.13142,1.43311-8.16994,2.86014-12.70206.95324a7.46406,7.46406,0,0,0-10.24409,7.86705,28.59581,28.59581,0,0,0,5.0581,13.73665c1.82988,2.552,4.45477,3.16537,8.12766,2.03616,3.05658-.93986,5.57427-3.78164,5.65838-6.42892.04087-1.28613-.6083-1.94647-1.90835-1.79458a8.82634,8.82634,0,0,0-1.34156.47057,6.40393,6.40393,0,0,1-1.8447.44169c-3.85177-.09261-2.98119-3.74066-4.19267-5.78787-.84561-1.429-.64258-3.15462,1.118-3.83811,4.35649-1.69128,8.76867-3.24962,13.20791-4.71126a2.67,2.67,0,0,1,3.32092,1.69882A33.77829,33.77829,0,0,1,494.66911,622.29209Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M511.82,461.30754a113.1003,113.1003,0,0,0,19.57007,2.01166c14.47072.23812,28.322-2.34648,41.41785-8.73113,11.265-5.49207,22.79255-10.23148,35.4471-11.5479,19.17828-1.99509,37.817-.33529,55.50848,7.94042,1.10977.51913,3.04551.76479,3.05048,1.93212a20.62742,20.62742,0,0,1-1.30686,6.27069c-.3231.99592-1.1997.1351-1.76239-.10936-6.69749-2.90934-13.35738-5.87255-20.58272-7.355-10.3928-2.1323-20.85372-2.29208-31.37994-1.56436-12.06035.83372-23.13,4.92071-33.812,10.2465a98.4118,98.4118,0,0,1-48.795,10.22517A112.236,112.236,0,0,1,509.063,468.2257c-1.34685-.303-1.839-.67253-.89554-1.9976a24.54364,24.54364,0,0,0,1.98993-3.5377C510.63584,461.70544,511.23694,461.12932,511.82,461.30754Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M539.29226,566.60069c.10471,1.08256-.67594,1.82043-1.63638,2.49007-3.85289,2.68633-7.71021,5.36722-11.51977,8.114-.90981.656-2.306,1.15559-2.02367,2.64944a5.734,5.734,0,0,0,2.79831,3.7095c.88221.55125,1.79565-.14575,2.59232-.72232,3.67538-2.65961,7.40512-5.24591,11.03443-7.96649a2.61628,2.61628,0,0,1,3.97361.31377c.27492.28857.59192.54166.83959.851,4.2117,5.259,3.48758,6.08035-.75294,8.8362-2.93284,1.90607-5.7429,4.00373-8.57774,6.05732-2.43639,1.76488-2.56976,2.71912-.84088,5.09337,1.43859,1.97559,2.45639,2.12514,4.82543.452,3.77032-2.66283,7.44914-5.45562,11.23005-8.10289,2.88969-2.02324,3.73905-1.82014,5.85878,1.01077,3.551,4.74225,3.49851,5.278-1.20349,8.64146q-9.716,6.94981-19.48465,13.82585c-2.55216,1.80056-3.51459,1.7145-5.33544-.82579q-10.78529-15.04633-21.4412-30.18511c-1.79073-2.54338-1.47209-3.71779,1.08861-5.54325q10.20891-7.27745,20.41615-14.55723c2.45352-1.75045,3.87205-1.59763,5.57509.887C537.72282,563.10944,539.19474,564.38862,539.29226,566.60069Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M269.5823,612.05061c.51448-1.77237-.3955-2.87961-2.03724-3.8653-3.259-1.95664-6.42392-4.075-9.57268-6.20786a2.40868,2.40868,0,0,0-3.3804.22842c-3.42369,2.913-4.65639,2.92725-8.41256.39258-.85607-.57768-1.66755-1.22107-2.51763-1.808-2.61857-1.80786-2.72391-2.58133-.15167-4.59936,10.45083-8.19906,20.95985-16.324,31.43015-24.49845a3.91185,3.91185,0,0,1,5.21041-.18158c2.38669,1.68123,5.24458,2.61126,7.412,4.67566a4.63183,4.63183,0,0,1,1.49238,4.89968c-2.62823,10.57583-5.16261,21.17493-7.75587,31.75947-.50779,2.07252-1.31206,4.04454-1.40745,6.24732-.09118,2.10585-1.47873,3.01016-3.61925,2.77765C272.36157,621.446,269.379,617.18661,269.5823,612.05061Zm6.19394-26.48052c-1.9764,1.50981-3.54294,2.68416-5.08572,3.889-5.70612,4.45631-5.62187,5.2683.65194,8.922,1.05337.61352,1.51734.55459,1.8611-.59924A57.927,57.927,0,0,0,275.77624,585.57009Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M406.00176,606.74647c4.03884-.02157,6.27334,2.15876,7.75213,5.32034,2.35509,5.035,4.13832,10.30029,6.11539,15.48668q3.77017,9.89015,7.47844,19.80379c1.09769,2.94578.59525,3.60174-2.61481,3.76369a31.211,31.211,0,0,0-3.31542.30447c-3.30428.52424-5.34622-.459-6.1992-3.6909-.66951-2.537-2.11318-2.97672-4.35953-2.85254-3.49538.19328-7.00216.30114-10.50146.25262-1.79331-.02479-2.98122.57136-3.38041,2.28013-.84254,3.60671-7.48271,6.07216-10.763,5.31489-2.13043-.49179-2.33431-2.02452-1.73692-3.9123q3.63394-11.48382,7.1857-22.99354c1.39327-4.48069,2.8359-8.94781,4.12364-13.45889.82416-2.887,2.28493-4.72149,5.527-5.02059C402.956,607.19278,404.61024,606.91111,406.00176,606.74647Zm-.6161,14.30415c-.22042.23368-.37653.32541-.41807.45414q-1.17142,3.62918-2.3177,7.26664c-1.99435,6.31941-1.50141,6.87037,5.15772,6.16658,1.86508-.19708,2.37346-.9333,1.71716-2.66849C408.12553,628.56993,406.78306,624.84892,405.38566,621.05062Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M280.41153,176.005a15.20468,15.20468,0,0,1,12.24148,5.4112c1.35232,1.54223,1.325,3.0487-.412,4.252-3.50491,2.4281-7.17987,4.00986-11.59734,2.17787-3.30867-1.37216-7.004-.12943-9.67351,2.8811-2.14456,2.41848-2.41035,5.19553-.53787,8.62222,1.63866,2.99885,3.4344,5.91873,5.28875,8.79083,1.72151,2.66632,3.92088,4.69637,7.46555,3.9816,4.21616-.85018,7.15482-3.6032,7.67421-7.44391.62242-4.60271,3.41663-7.3732,7.3511-9.23638,1.87806-.88934,3.11844-.22749,3.85724,1.79041,2.735,7.47071.23138,13.64858-4.93514,18.91025-5.11952,5.21381-11.36713,8.04-18.90012,7.34012a15.478,15.478,0,0,1-10.06457-4.94913,45.53606,45.53606,0,0,1-9.67556-14.97055c-3.6161-9.56479.2922-19.16,9.38878-24.14282A26.90939,26.90939,0,0,1,280.41153,176.005Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M130.40863,452.35641c7.9892,3.50987,15.33983,7.21147,23.45863,8.76472,19.98858,3.82417,39.5819,3.21335,58.4993-5.23486,7.18258-3.20764,14.22538-6.76867,21.73193-9.20659a98.5915,98.5915,0,0,1,32.5303-4.35744c2.21407.0404,5.03889-.84579,6.47529.54961,1.23252,1.19739-.18806,4.01143.59178,6.08819.44707,1.19037-.61669.98189-1.27854.96441-4.37794-.11558-8.75165-.16925-13.13492-.074-12.9032.28048-24.91544,3.8555-36.445,9.42258-10.21024,4.93-20.65521,9.14476-32.06778,10.447-19.64067,2.24111-38.77517.92054-56.92139-7.754-.65435-.3128-1.328-.51857-1.51775-1.34988C131.73172,457.993,131.11264,455.37451,130.40863,452.35641Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M354.38937,375.5389c-16.1197.8158-31.20515-3.06312-45.54114-10.28237-23.52439-11.84632-47.99405-13.31726-73.1069-6.209-6.57947,1.86232-12.72055,5.00113-18.86986,7.96969-14.41281,6.95768-29.64912,9.33029-45.50207,8.7917a92.27192,92.27192,0,0,1-26.51165-4.38939c-5.80962-1.95373-11.29422-4.68308-16.92528-7.06382-1.79653-.75953-1.31056-2.15031-.91727-3.18888.53169-1.404,1.45079-.11675,2.0635.16665,9.82642,4.545,19.68809,9.001,30.59454,10.29239,17.79081,2.10655,35.25044,1.45741,52.02239-5.88052,8.65453-3.78646,17.059-8.22,26.23605-10.74344,12.06079-3.31636,24.33425-3.70511,36.74035-2.93322,13.37522.83222,25.6077,5.34427,37.43274,11.19708a92.4739,92.4739,0,0,0,45.286,9.34156,109.098,109.098,0,0,0,22.44424-2.98777c.61274-.1527,1.76437-1.2094,1.98929.41927.15614,1.13059.35782,2.33359-1.39523,2.75435a95.95314,95.95314,0,0,1-16.72225,2.713C360.6112,375.68924,357.49583,375.5389,354.38937,375.5389Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M515.14274,412.4614a129.653,129.653,0,0,0,18.804,1.301,90.35589,90.35589,0,0,0,40.79067-9.45608c9.96558-4.861,20.18637-9.03313,31.34486-10.45077a126.50648,126.50648,0,0,1,33.333.15431c11.518,1.58266,21.91011,6.38507,32.28718,11.23407.87228.4076,1.45888,5.03041.705,5.64614-.73967.60414-1.34527-.1399-1.94439-.41435-6.1396-2.81235-12.22224-5.76144-18.60922-7.99006-11.14358-3.88822-22.68684-4.59252-34.36908-4.33084a88.48505,88.48505,0,0,0-38.50033,10.02683,97.64341,97.64341,0,0,1-46.74008,10.91515c-4.61617-.0872-9.23509-.27981-13.83547-.78961a2.06186,2.06186,0,0,1-2.12155-1.79777C516.01963,415.27246,515.60463,414.06742,515.14274,412.4614Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M542.52427,201.26269a9.725,9.725,0,0,1-1.50664-.48238c-.85029-.42095-1.65474-.93395-2.48264-1.40089-5.82989-3.2881-6.48853-3.44832-9.87759,1.96666-4.24122,6.77666-8.567,13.50072-12.89333,20.22363-1.92773,2.9956-3.09988,3.18921-6.00495,1.20247-.98009-.67027-1.97076-1.327-2.97949-1.953-3.19478-1.98272-3.45279-3.06237-1.384-6.33181,3.13309-4.9517,6.30909-9.87636,9.4368-14.83144,1.98941-3.15177,3.83616-6.398,5.93385-9.47442.695-1.01922.42249-1.47535-.22352-2.17837-1.548-1.68477-3.68262-2.44562-5.57919-3.565-3.23154-1.90732-3.79108-3.68447-1.92129-6.81463,2.53935-4.25106,4.06845-4.81844,7.49113-2.66075q12.56026,7.91814,25.08295,15.89578c2.99125,1.91028,3.2274,2.95169,1.3879,6.05255C545.93941,198.7061,545.13192,200.85343,542.52427,201.26269Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M671.1713,367.44238c-6.62985-2.8604-12.94561-6.06574-19.6652-8.32069-10.95736-3.67693-22.26191-4.35429-33.70478-4.15654-14.39074.24868-27.77619,4.21544-40.49231,10.6896-19.78213,10.07173-40.67789,12.0325-62.34133,8.84915-9.56437-1.40546-18.36362-5.01329-27.02684-9.04526a133.028,133.028,0,0,0-18.35369-7.35021c-1.47694-.43593-1.42014-1.01606-1.1877-2.17589.29613-1.47765,1.12362-1.151,2.09813-.8756a108.12077,108.12077,0,0,1,19.00641,7.60931c22.32488,11.19546,45.58675,12.55823,69.49159,6.74018,7.43879-1.81049,14.30514-5.325,21.19534-8.61044a92.65829,92.65829,0,0,1,38.52261-9.05772c13.43316-.27062,26.55247,1.12694,39.07752,6.29042,3.6742,1.51466,7.23539,3.30472,10.91672,4.80009C670.817,363.68556,671.68528,365.0037,671.1713,367.44238Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M501.83656,408.97006c-.29239.33824-.4002.45113-.4948.57417-2.906,3.77877-6.07339,2.65049-9.6955.9407-8.748-4.12934-17.45843-8.40152-27.05938-10.38222a111.79683,111.79683,0,0,0-29.68436-1.711,73.23082,73.23082,0,0,0-14.14267,2.14116c-1.441.37922-1.95292.0511-1.94845-1.54825.00994-3.53528-.09524-3.62961,3.41242-4.237,18.05111-3.12594,35.932-2.95845,53.45586,3.064,7.82512,2.68928,15.10325,6.67612,22.76435,9.76044C499.54032,408.01337,500.62956,408.47213,501.83656,408.97006Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M443.55191,449.61857a95.4557,95.4557,0,0,0-22.75034,2.5697c-1.73052.44631-1.97231-.16046-1.98064-1.69325-.03084-5.677-.08735-5.74386,5.17375-6.59032,15.42874-2.4823,30.768-2.33187,45.99432,1.574,2.55371.65508,2.80006,3.22425,4.41244,4.64847.54284.47955-2.95242,3.42779-3.97654,3.12428a77.76842,77.76842,0,0,0-16.13941-3.0198C450.71317,449.95553,447.13014,449.81817,443.55191,449.61857Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M342.6917,463.0349c4.76184-.03909,9.47559.44122,14.21314.27714a97.55222,97.55222,0,0,0,23.30149-3.32314c1.24386-.35171,1.62711-.33876,1.69005,1.10484.26772,6.13809.23054,5.85568-5.63385,7.58649-7.19391,2.12324-14.01088.492-20.85536-1.27383C351.07667,466.28914,346.701,465.21552,342.6917,463.0349Z\"/\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 792 792\" width='792' height='792'\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1 {\n fill: #fff;\n }\n \u003c/style\u003e\n \u003c/defs\u003e\n \u003cpath class=\"cls-1\" d=\"M402.5229,96.16562c-154.49622-1.81855-280.08545,111.53747-300.82166,257.3861,18.18463.8946,28.32349,5.67072,38.15668,10.3064,6.42492,3.0285,12.64776,5.95764,20.92779,7.88855,17.406,1.9483,34.48792,1.18353,50.90991-6.00128,8.65455-3.78644,17.059-8.22,26.23609-10.74347,12.06073-3.31635,24.33423-3.70508,36.74029-2.93323a81.61615,81.61615,0,0,1,21.24286,4.35767,108.50422,108.50422,0,0,1,18.95868,7.43078c3.69989,1.74427,7.33338,3.45514,11.32984,4.96241a95.606,95.606,0,0,0,31.18744,3.78784A109.1017,109.1017,0,0,0,379.835,369.6196c.61273-.15271,1.76434-1.20942,1.98932.41925a5.6943,5.6943,0,0,1,.0849,1.28149c2.22662-.57587,4.30823-1.22314,6.28912-1.92468v-4.37049c-.00006-3.59729-.23706-3.8515-3.72235-3.85449-7.89722-.00677-15.79492.04724-23.69134-.03174a12.425,12.425,0,0,0-6.52985,1.87989c-5.47083,3.15844-10.9035,2.51306-15.60663-1.70227-3.95355-3.54358-5.09-9.64313-2.788-14.96357,2.95929-6.83923,12.14642-9.64764,18.41925-5.58935a11.3715,11.3715,0,0,0,6.50616,1.94147c7.97858-.07856,15.95844-.02283,23.93775-.03315,3.0368-.004,3.4646-.44244,3.47357-3.4563.00787-2.6336-.11634-5.27435.03979-7.89874.12006-2.01721-.74438-3.00689-2.51544-3.76526-7.2923-3.12256-13.76886-7.34228-18.01392-14.30212-14.78961-24.24786-.19342-51.56635,24.04645-56.4007a37.12879,37.12879,0,0,1,40.17755,19.57807c8.14331,16.34851,4.16242,38.98028-15.7044,49.0921-2.784,1.417-4.0893,3.09405-3.77161,6.2981a72.492,72.492,0,0,1,.04144,8.85217c-.03473,1.4505.55744,2.016,1.96314,2.01269,8.141-.01892,16.282-.00683,24.42309-.01288a7.33724,7.33724,0,0,0,3.91346-1.6231,12.88345,12.88345,0,0,1,16.069,1.34008,13.51634,13.51634,0,0,1,3.73883,12.27125c2.05615.32867,3.99444.713,5.83264,1.14373.321-1.30749,1.12-1.00988,2.06061-.74414a108.12148,108.12148,0,0,1,19.0064,7.60932c22.32489,11.19543,45.5868,12.55822,69.49158,6.74017,7.43884-1.81049,14.30518-5.325,21.19538-8.61041a92.65783,92.65783,0,0,1,38.52258-9.05774c13.43316-.27063,26.55249,1.127,39.07751,6.2904,3.67426,1.51471,7.23542,3.30475,10.91675,4.80011,1.9079.775,2.78882,1.93659,2.5614,3.95441a79.008,79.008,0,0,0,26.7356,6.83966C686.63056,219.19272,558.61689,98.003,402.5229,96.16562ZM297.134,216.14224c-5.11951,5.21381-11.36713,8.04-18.90009,7.34009a15.47784,15.47784,0,0,1-10.06457-4.94916,45.53557,45.53557,0,0,1-9.67554-14.97052c-3.61609-9.56476.29218-19.16,9.38873-24.14282a26.90963,26.90963,0,0,1,12.529-3.41486,15.20483,15.20483,0,0,1,12.24151,5.4112c1.3523,1.54223,1.325,3.0487-.412,4.25207-3.50494,2.4281-7.17987,4.00983-11.59735,2.17786-3.30865-1.37213-7.004-.12946-9.67352,2.8811-2.14453,2.41846-2.41034,5.1955-.53784,8.62219,1.63867,2.99884,3.43439,5.91877,5.28876,8.79084,1.72149,2.66632,3.92083,4.69641,7.46551,3.98162,4.21619-.85015,7.15485-3.60321,7.6742-7.4439.62243-4.60273,3.41662-7.37323,7.35113-9.23639,1.878-.88935,3.11841-.22748,3.85724,1.7904C304.80421,204.70266,302.30054,210.88052,297.134,216.14224Zm83.16363-27.42035c-.63562,1.20154-1.85357,1.45844-3.01379,1.67017-7.97,1.45465-15.94739,2.86847-23.92267,4.29376-1.01617.18164-2.031.37408-3.05163.52685-3.16.473-4.05146-.11-4.597-3.223-1.63373-9.3222-3.22229-18.6524-4.82727-27.97973-.61987-3.60205-1.23627-7.20472-1.77856-10.36567.11364-2.74292,1.59552-3.61206,3.57959-3.92907,5.02685-.8031,10.0636-1.54645,15.0838-2.38861,3.449-.57856,6.86352-1.36817,10.31793-1.9068,3.59906-.56116,4.29083.01324,5.00183,3.60461,1.20654,6.09467.94464,6.433-5.30023,7.37616-4.0072.60516-8.00726,1.26062-12.00275,1.93933-2.24426.38123-3.12079,1.57074-2.80719,3.63434.41663,2.74188,1.15894,3.46112,3.73639,3.06116,4.16211-.64594,8.30615-1.42151,12.43964-2.23487,3.5589-.70025,4.634-.10076,5.46991,3.38361.18475.77.23358,1.5719.36041,2.35663.52069,3.22186-.31036,4.465-3.41809,4.9892-4.00165.675-7.99524,1.42535-12.01862,1.93591-3.898.49463-3.90637,1.94867-3.14428,5.5802.40594,1.93433,2.23339,1.78381,3.75927,1.52136,4.69934-.80817,9.38465-1.69751,14.08136-2.5213.85749-.15045,1.74329-.13776,2.61548-.2066a2.42644,2.42644,0,0,1,1.75537.63733C379.19434,180.9526,380.63306,188.08767,380.29761,188.72189Zm76.1059-10.73926c-1.78729.81336-2.11041,2.00135-1.52673,3.84864,1.29059,4.08453,2.42883,8.21905,3.54669,12.35546.61114,2.26117-.0957,3.30506-2.4198,3.13251-6.32275-.46954-8.90039-.32757-11.10089-7.66662-.84314-2.81208-1.80268-5.59656-2.48865-8.44666-.75684-3.14423-2.67511-3.50891-5.63727-3.39679-1.00757.03815-1.16858.80481-1.3374,1.661-.53894,2.73346-1.11426,5.46344-1.79944,8.16333-.55078,2.17017-1.61987,4.11859-4.04669,4.52246a9.51769,9.51769,0,0,1-7.577-2.10089c-1.30493-1.03064-.72345-2.67877-.45678-4.05475q2.86248-14.76745,5.80084-29.52014c.5542-2.807,1.09308-5.61761,1.70465-8.41223.34509-1.577,1.26465-2.65375,3.03619-2.31506,8.4181,1.60925,17.0409,2.49658,24.93128,6.12823,4.89722,2.254,7.44079,6.73291,7.46619,12.08807C464.23151,170.04434,462.42658,175.2416,456.40351,177.98263Zm90.60071,18.92847c-1.06482,1.795-1.87232,3.94232-4.47992,4.35156a9.71935,9.71935,0,0,1-1.50665-.48236c-.85028-.421-1.65479-.934-2.48267-1.40088-5.82989-3.28814-6.48853-3.44836-9.87756,1.96668-4.24121,6.77661-8.567,13.50067-12.89337,20.22357-1.92768,2.9956-3.09986,3.18927-6.005,1.20251-.98-.67028-1.97076-1.327-2.97949-1.95306-3.19476-1.98273-3.45276-3.06232-1.384-6.33179,3.13311-4.95172,6.30908-9.87634,9.43682-14.83142,1.98938-3.15179,3.83613-6.39807,5.93384-9.47442.695-1.01923.42249-1.47535-.22351-2.17841-1.548-1.68475-3.68262-2.44562-5.57922-3.56494-3.23151-1.90735-3.79108-3.68451-1.92127-6.81464,2.53937-4.251,4.06842-4.81842,7.49115-2.66076q12.56022,7.91811,25.08295,15.89581C548.60755,192.76883,548.8437,193.81021,547.00422,196.9111Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M442.72083,158.28878c-3.1651.06525-4.64532,1.55146-4.63122,4.66095-.19031,3.27375,1.9967,5.87629,5.51245,5.414a13.4233,13.4233,0,0,1,3.056.21484c2.06354.20648,3.96106-.35828,4.89429-2.52673a4.1206,4.1206,0,0,0-1.13422-5.15448A10.7271,10.7271,0,0,0,442.72083,158.28878Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M170.65815,413.64822a129.16793,129.16793,0,0,0,15.26276-.33783c11.6372-.91949,22.39276-4.5979,32.75543-9.69757a100.34565,100.34565,0,0,1,43.64422-10.81909,113.83117,113.83117,0,0,1,19.41974,1.36444c15.32361,1.45148,24.56848,5.807,33.55951,10.04614,7.69544,3.628,15.09711,7.11267,26.1612,8.87708a123.233,123.233,0,0,0,22.45147.29345,83.07847,83.07847,0,0,0,16.43732-2.90545c1.18567-.33112,1.46295-.02967,1.5321,1.07373,2.23865-.58643,4.3263-1.24756,6.31659-1.96167q0-18.5137-.00012-37.02741c-7.6886,2.59864-17.02161,4.47254-30.21155,4.47254-12.75592,0-21.9013-1.754-29.44384-4.21973a100.82654,100.82654,0,0,1-19.69477-7.55035,100.04332,100.04332,0,0,0-17.45025-6.85932,98.46911,98.46911,0,0,0-20.917-1.99609c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508a102.989,102.989,0,0,1-20.34424-1.837,83.72829,83.72829,0,0,1-17.76337-3.77c-5.80963-1.95373-11.29419-4.6831-16.92523-7.06384-1.6239-.68652-1.38226-1.88654-1.03045-2.87823a81.11373,81.11373,0,0,0-25.61438-4.94733A302.73549,302.73549,0,0,0,98.70734,393.695c20.31159.49225,31.11719,5.57929,41.57734,10.51026C148.91834,408.27487,157.17866,412.16647,170.65815,413.64822Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M271.34248,598.38107c1.05334.61353,1.51733.55457,1.86108-.59924a57.927,57.927,0,0,0,2.57269-12.21173c-1.97644,1.50976-3.543,2.68414-5.08575,3.889C264.98438,593.91543,265.06867,594.72738,271.34248,598.38107Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M405.38569,621.05063c-.22046.23364-.37653.32537-.41809.4541q-1.17143,3.62923-2.31769,7.26666c-1.99439,6.3194-1.5014,6.87036,5.15771,6.16656,1.86506-.19708,2.37342-.93328,1.71717-2.66845C408.12556,628.56991,406.78309,624.8489,405.38569,621.05063Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M182.96534,462.78048c1.63122,0,3.19055-.03222,4.69781-.08813a85.18642,85.18642,0,0,0,24.70343-6.80609c7.18256-3.20764,14.22535-6.76868,21.73194-9.20661a96.4645,96.4645,0,0,1,29.90576-4.36474q2.42633-.1215,5.04828-.14874a10.32123,10.32123,0,0,1,2.45276-.003c3.28405.02417,6.33343.16181,9.175.39875q4.71259-15.14209,9.52155-30.254c.95068-2.98755,3.80347-3.611,5.9353-1.29449q11.97693,13.01458,23.87714,26.09991c2.15076,2.3576.90716,5.38153-1.949,5.68573a16.074,16.074,0,0,0-1.8551.45367c-1.88251.43415-2.03015,1.41675-1.09155,2.96479a78.22153,78.22153,0,0,0,6.64069,9.3659c9.012,3.973,19.023,7.197,36.22747,7.197a112.38881,112.38881,0,0,0,11.5636-.56018,82.83657,82.83657,0,0,0,10.65589-2.23144c.80444-.22742,1.24554-.29511,1.47625.07074,2.31494-.60828,4.46607-1.29785,6.51606-2.04309q0-21.57716-.00013-43.1543c-7.70507,2.57117-17.0559,4.41632-30.21167,4.41632-2.28534,0-4.45031-.05835-6.51745-.16376a93.54231,93.54231,0,0,1-39.017-8.95526c-5.101-2.41394-10.14118-5.019-15.41254-6.99389a74.796,74.796,0,0,0-17.36853-4.17542c-2.82831-.21912-5.87683-.33765-9.19031-.33765-21.3208,0-31.7041,4.89356-42.69775,10.0752-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078-2.93555,0-5.67749-.09393-8.25836-.2652a98.67563,98.67563,0,0,1-28.75452-4.01226c-6.93359-2.1438-13.40277-5.41864-20.02759-8.31305a1.5384,1.5384,0,0,1-1.10174-1.6186c.02795-.66265.03247-1.32788.03033-2.00842-6.8388-2.36889-14.89264-4.0885-26.14929-4.36609a305.17549,305.17549,0,0,0,3.46277,43.63263c18.33227.95374,28.59308,5.78479,38.544,10.47541C151.59522,457.9338,161.87647,462.78048,182.96534,462.78048Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M376.26252,468.6802a26.55722,26.55722,0,0,1-10.205.85212c-2.52679.16131-5.209.24816-8.07068.24816a101.21659,101.21659,0,0,1-23.58245-2.48736c.16992.11828.32934.24731.50079.36407,4.39343,2.9914,9.66644,4.45118,14.79767,5.88678a203.78708,203.78708,0,0,0,35.22418,6.41919c2.46667.24048,3.24725-.43628,3.26141-3.12585.02-3.80591.01868-7.61194.01508-11.418a80.21566,80.21566,0,0,1-9.20807,2.43976C378.26679,468.09884,377.36884,468.35367,376.26252,468.6802Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M470.42487,453.25149a77.765,77.765,0,0,0-16.1394-3.01983c-3.57233-.27613-7.15534-.41352-10.73358-.6131a95.45289,95.45289,0,0,0-22.75031,2.5697,5.04666,5.04666,0,0,1-.52472.10669,78.13,78.13,0,0,0-7.76,2.682q0,10.70278.00006,21.40545c.00006,4.51575.04786,4.50983,4.53559,4.31714a165.17283,165.17283,0,0,0,29.48706-4.29816c13.77606-3.12469,24.343-10.62445,32.82446-21.05792-2.31689-.96008-4.73236-1.85864-7.34039-2.65832A2.5241,2.5241,0,0,1,470.42487,453.25149Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M491.64625,410.48489a177.34737,177.34737,0,0,0-19.18274-8.21747c-6.9895-2.16052-15.355-3.61487-26.97132-3.61487-15.12084,0-24.73645,2.46271-32.97113,5.74256q-.00328,8.22015-.00427,16.44031,0,13.32129.00006,26.64251c2.20691-.81262,4.54071-1.57086,7.05609-2.2464.68329-.70123,1.972-.93274,4.42176-1.32684q4.81621-.7749,9.62036-1.19012c3.59967-.35865,7.53125-.55909,11.87713-.55909,17.93964,0,28.87177,3.39222,38.15784,7.4021.61054-1.06878.45886-1.80871-1.21869-2.2962-6.37555-1.85272-6.77484-3.54608-1.95343-8.21027q11.43156-11.05882,22.96283-22.01471a7.39453,7.39453,0,0,1,1.91242-1.36639,90.74841,90.74841,0,0,1-10.66956-3.9555A22.22373,22.22373,0,0,1,491.64625,410.48489Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M417.67707,293.412a18.87075,18.87075,0,0,0-37.72839-.96045c-.3172,11.24109,7.55853,19.34986,19.06469,19.62885C409.01221,312.32284,417.43043,303.90249,417.67707,293.412Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M240.43684,357.81717q-2.34394.56469-4.6955,1.2304c-6.57947,1.86231-12.72058,5.0011-18.86987,7.96967a85.487,85.487,0,0,1-13.12415,5.04156c8.98975-1.91784,15.54749-5.004,22.33032-8.20068A128.72432,128.72432,0,0,1,240.43684,357.81717Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,356.40109c-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-7.88782-3.71863-15.46937-7.28839-26.93274-9.04254-.11274.24121-.22522.4826-.35462.71564A13.249,13.249,0,0,1,446.40247,364.52a3.40047,3.40047,0,0,1-1.3244-.51715c-4.0766-3.46509-8.93823-2.76294-13.67084-2.5456a145.18227,145.18227,0,0,1-16.01208.15113c-2.3587-.1521-2.93317.70684-2.92359,2.962q.07333,17.23536.05091,34.47107c1.99322-.74255,4.08887-1.44141,6.32989-2.07428.13117-1.59051.714-1.75946,3.37146-2.21966,18.05109-3.12592,35.932-2.95844,53.45587,3.064,7.82514,2.68933,15.10322,6.67615,22.76435,9.76044,1.09625.44134,2.18554.90014,3.39251,1.39807-.06726.07782-.12261.14111-.17242.19794a74.577,74.577,0,0,0,13.60217,3.7113c-.04162-.14124-.08111-.2702-.12359-.41791a129.65539,129.65539,0,0,0,18.80407,1.301,90.35546,90.35546,0,0,0,40.79065-9.45612c9.96558-4.861,20.18641-9.03314,31.34485-10.45074a126.50578,126.50578,0,0,1,33.333.15429c11.518,1.58264,21.9101,6.38507,32.28717,11.23407.38269.17884.71021,1.169.89386,2.27613a77.88352,77.88352,0,0,0,25.73029,6.37744c.33178-5.86261.515-11.764.50488-17.70984.00348-6.57013-.22705-13.08307-.63831-19.54566-15.96423-1.30786-25.39477-5.75079-34.56134-10.07141C652.53712,361.341,642.05665,356.40109,620.51368,356.40109Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M576.78919,529.12356a20.14686,20.14686,0,0,0-6.69092,6.31964c-.37762.56385-.6322,1.16675-.137,1.7464a23.34732,23.34732,0,0,0,5.3313,4.682.88174.88174,0,0,0,1.10113-.14764,20.74806,20.74806,0,0,0,5.83368-8.65528C582.31428,530.27926,578.87312,527.92129,576.78919,529.12356Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M646.84675,452.6232c-1.21515-.33576-2.439-.64856-3.68469-.90412-10.39283-2.13232-20.8537-2.29211-31.38-1.56439-12.06036.83374-23.13,4.92072-33.812,10.24652a98.412,98.412,0,0,1-48.795,10.22516,112.23651,112.23651,0,0,1-20.11219-2.4007c-1.0849-.244-1.59979-.54034-1.272-1.33538-2.02924-.52515-3.94171-1.1037-5.7616-1.7229a119.47954,119.47954,0,0,1-7.97,11.39355c-9.49524,11.939-20.73309,21.86926-34.21795,29.00372-10.11261,5.35022-20.37091,10.5033-31.53,13.46228a36.56239,36.56239,0,0,1-8.19916,1.445c-2.50464.078-4.26166,1.35773-5.94074,3.03595-3.77929,3.7771-7.62872,7.4845-11.478,11.1908q-3.95938,3.81216-7.93152-.05585-6.4238-6.26733-12.77643-12.60693a6.78779,6.78779,0,0,0-3.68048-1.99469c-20.80359-4.064-38.77234-13.92633-54.96387-27.25025A122.73,122.73,0,0,1,292.256,453.8287a8.04176,8.04176,0,0,0-2.27118-2.92157q-2.17374-.438-4.55408-.77789c-.25946.038-.52563.08209-.8045.13708a4.65338,4.65338,0,0,1-4.06561-.69207c-2.13233-.18671-4.39295-.31452-6.80219-.37531.20618.906-.73071.74164-1.34113.72553-4.37793-.1156-8.75164-.16925-13.13488-.074q-1.16547.02537-2.32093.08759c-12.56323,1.5719-20.48614,5.30139-28.752,9.197-9.23547,4.35235-18.7392,8.82519-34.70685,10.20892-.9057.14124-1.81518.27136-2.733.3761-19.64069,2.24109-38.77521.92053-56.92139-7.754-.65436-.31281-1.328-.51855-1.51776-1.34991-.33179-1.45343-.67169-2.913-1.02692-4.43244a78.00412,78.00412,0,0,0-27.96411-6.77826,299.7383,299.7383,0,0,0,295.54444,247.1543c141.47577-.04816,259.20587-97.47815,291.28753-228.12329-11.74224-1.93024-19.66131-5.65827-27.39209-9.30237A113.2795,113.2795,0,0,0,646.84675,452.6232ZM216.93623,571.919c-2.82074,2.22028-3.90528,2.03662-6.04407-.76843-.77-1.00989-1.58374-1.99084-2.43213-2.936-1.79944-2.00458-1.74823-3.53821.34-5.26191,3.49952-2.88867,7.04395-5.72284,10.55591-8.59655.51044-.41767,1.48267-.74366,1.14814-1.52979-.28565-.67132-1.24915-.592-1.947-.54706-1.58715.10242-3.17193.26233-4.75213.44648-5.27234.61444-8.39667-3.10376-6.81183-8.15241.76086-2.42389,1.57434-4.83118,2.36243-7.247-.00074-.1748.00006-.34857.00085-.5224l-.30347.22363c-4.17114,2.65839-7.71533,6.1048-11.55114,9.18482-.62055.49829-1.23731,1.00568-1.8924,1.45569a2.72573,2.72573,0,0,1-3.36578.05444,16.46026,16.46026,0,0,1-5.19666-6.69391c-.63165-1.65417.81665-2.77234,1.98346-3.71777,5.3205-4.311,10.69275-8.55823,16.00452-12.87988q6.20452-5.04822,12.29706-10.23291c1.61615-1.38068,3.02289-1.57154,4.54944.04583.76336.80872,1.64349,1.5058,2.43847,2.28632,2.45246,2.40784,2.746,5.11523,1.46839,8.283-2.13141,5.28454-4.04767,10.65582-6.16877,16.29431,5.56031-.8,10.8241-1.50256,16.06849-2.32843a10.35793,10.35793,0,0,1,10.99029,5.40613c1.02026,1.92315.3468,3.28863-1.20416,4.5393q-10.689,8.61933-21.33472,17.2923C221.73023,567.97427,219.37489,569.9993,216.93623,571.919Zm72.11889,9.16742c-2.62823,10.57587-5.1626,21.17493-7.75586,31.75946-.50781,2.07257-1.31207,4.04456-1.40747,6.24738-.09118,2.10583-1.47876,3.01013-3.61926,2.77759-3.911-.42481-6.89349-4.68421-6.69025-9.82019.51453-1.7724-.39551-2.87964-2.03723-3.86536-3.259-1.9566-6.42389-4.07495-9.57269-6.20783a2.40866,2.40866,0,0,0-3.38037.2284c-3.42371,2.913-4.65637,2.92724-8.4126.39258-.856-.57764-1.66754-1.22107-2.51758-1.808-2.61859-1.80786-2.72394-2.5813-.15167-4.59936,10.4508-8.199,20.95984-16.324,31.43011-24.49842a3.91184,3.91184,0,0,1,5.21045-.18158c2.38666,1.68122,5.24457,2.61127,7.41205,4.67566A4.63191,4.63191,0,0,1,289.05512,581.08639Zm69.34406,28.72895c-2.75873,9.72839-5.53766,19.45092-8.26831,29.18719-.53626,1.91211-.89728,3.87372-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68921,2.0617c-6.48553-.48132-8.094-1.4942-9.7807-7.0473-1.81854-5.98712-3.99835-11.86469-6.04162-17.78284a23.37065,23.37065,0,0,0-1.13672-2.25226c-1.38007,5.0849-2.68274,9.53174-3.7854,14.02759-1.80652,7.3656-2.48346,7.06977-8.85968,5.2735-4.04834-1.1405-4.66589-2.20117-3.4867-6.34491,3.31141-11.63684,6.93665-23.189,9.59833-35.00256a2.5467,2.5467,0,0,1,3.026-2.2757c5.63513.30878,7.73993,1.8891,9.51648,7.23566q3.29434,9.91379,6.60419,19.82251l.517-.02533c1.43768-5.3819,2.88659-10.76087,4.30932-16.14673,1.08246-4.09778,2.22059-4.75146,6.34736-3.57513.613.17474,1.2268.34655,1.84014.52C359.116,604.53134,359.63459,605.45865,358.39918,609.81534Zm66.33374,41.3056a31.21624,31.21624,0,0,0-3.31543.3045c-3.30426.52423-5.34619-.459-6.19922-3.69092-.6695-2.53692-2.11316-2.97674-4.3595-2.85253-3.49542.19329-7.0022.30114-10.50146.25262-1.79334-.02478-2.9812.57135-3.38044,2.28009-.84252,3.60675-7.48266,6.07221-10.763,5.31494-2.13043-.49182-2.33429-2.02453-1.73687-3.91229q3.6339-11.48382,7.18567-22.99359c1.39331-4.48065,2.83593-8.94776,4.12365-13.45886.82416-2.887,2.28492-4.7215,5.527-5.02057,1.6427-.15155,3.29694-.43323,4.68848-.59784,4.03882-.02161,6.27331,2.15875,7.75213,5.32031,2.355,5.035,4.13831,10.30029,6.11536,15.48669q3.77024,9.89008,7.47845,19.80378C428.44544,650.30307,427.943,650.959,424.73292,651.12094Zm61.93072-14.93512c-7.67676,5.64844-18.118,5.75622-25.14856.29059-2.74762-2.136-4.31036-5.11835-5.58221-8.20349a69.40878,69.40878,0,0,1-3.74182-12.5398c-1.08252-5.28534.51916-9.8949,4.1311-13.84473a23.66261,23.66261,0,0,1,24.96265-6.097,14.1232,14.1232,0,0,1,6.80536,5.42371c1.07153,1.55883.6936,2.768-1.03547,3.36761-4.1314,1.43311-8.16992,2.86017-12.70208.95325a7.46405,7.46405,0,0,0-10.24408,7.86706,28.5953,28.5953,0,0,0,5.0581,13.73664c1.8299,2.552,4.45478,3.16534,8.12763,2.03613,3.05664-.93982,5.57428-3.78162,5.65838-6.4289.0409-1.28613-.60827-1.94647-1.90832-1.79455a8.82338,8.82338,0,0,0-1.34155.47052,6.40346,6.40346,0,0,1-1.84473.44171c-3.85175-.09259-2.9812-3.74066-4.19263-5.78784-.84564-1.429-.64258-3.15466,1.118-3.83814,4.35645-1.69128,8.76868-3.24963,13.20789-4.71124a2.67,2.67,0,0,1,3.32092,1.69879,33.7795,33.7795,0,0,1,3.35694,13.06592C494.73774,628.50082,491.36121,632.72952,486.66364,636.18582Zm69.22626-38.1579q-9.716,6.94986-19.48462,13.82587c-2.55218,1.8006-3.51459,1.71454-5.33545-.82575q-10.78527-15.04641-21.44122-30.18512c-1.79071-2.54339-1.472-3.71783,1.08862-5.54327q10.209-7.27743,20.41614-14.55725c2.45355-1.75043,3.87207-1.5976,5.57507.887,1.01441,1.48,2.48627,2.75916,2.5838,4.97125.10474,1.08259-.6759,1.82044-1.63635,2.49006-3.8529,2.68634-7.7102,5.36724-11.51977,8.11407-.90979.656-2.306,1.15558-2.02369,2.64941a5.73405,5.73405,0,0,0,2.79834,3.70954c.88221.55121,1.7956-.14575,2.59229-.72235,3.67541-2.65961,7.40515-5.24591,11.03442-7.96649a2.61631,2.61631,0,0,1,3.97364.31378c.2749.28857.59191.54168.8396.851,4.21167,5.259,3.48754,6.08032-.75293,8.83618-2.93287,1.90607-5.74292,4.00373-8.57776,6.05731-2.4364,1.7649-2.56977,2.71912-.84088,5.09339,1.43859,1.97558,2.45636,2.12512,4.82543.452,3.77033-2.66284,7.44916-5.45562,11.23005-8.1029,2.88971-2.02319,3.739-1.82013,5.85876,1.0108C560.64436,594.12875,560.59193,594.66452,555.8899,598.02792Zm54.19134-57.88849c-2.52319,4.95264-6.37615,8.55329-13.14465,6.19287a43.08247,43.08247,0,0,0-7.00433-1.47143,4.60675,4.60675,0,0,0-5.13135,3.59094c-.28046,1.141.60931,1.39056,1.15033,1.834,2.45709,2.014,4.9649,3.96668,7.46906,5.92273a2.94245,2.94245,0,0,1,.67877,4.40339,35.24864,35.24864,0,0,1-3.30707,4.35467c-1.7594,1.904-3.135,1.98743-5.22522.37018-4.52466-3.50055-8.97589-7.09577-13.48523-10.61627Q565.03877,549.222,557.9372,543.799c-3.63037-2.75855-3.89929-4.2699-1.09234-7.82605,3.49566-4.42865,6.93707-8.90607,10.58752-13.20484,3.03918-3.579,6.7898-6.0296,11.16846-5.85131,8.1596.22143,13.74292,5.3045,14.7619,12.90515.55707,4.15545.70129,4.23864,4.977,4.93512,3.38171.551,6.749,1.20227,10.10516,1.89416C610.814,537.13962,611.18531,537.9722,610.08124,540.13943Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,398.65255c-20.44885,0-30.837,4.502-41.35242,9.44184-.05877.02972-.1181.05737-.17682.08722-2.29156,1.16473-4.60614,2.228-6.93908,3.21075-9.48011,4.20923-20.47535,7.88617-39.04731,7.88617a99.68618,99.68618,0,0,1-23.72845-2.55432,6.72887,6.72887,0,0,1,.844,2.03717q4.00782,15.95288,7.797,31.96039c.87878,3.70355-1.83844,6.2522-5.5744,5.41785a12.16764,12.16764,0,0,1-1.82672-.5459c-1.85224-.73389-2.9823.02093-3.87189,1.64984-.32111.588-.64917,1.17145-.97632,1.75549,7.04968,2.2511,15.48694,3.78143,27.33679,3.78143,21.08887,0,31.37207-4.84668,42.25977-9.97753,11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,4.33746,0,8.26263.19959,11.85681.55695a92.46681,92.46681,0,0,1,31.39307,8.26813c1.10974.51916,3.04547.76483,3.05047,1.93213.00055.12573-.00866.252-.01275.37805,7.28058,3.42523,14.45874,6.6546,24.96331,8.31848a299.5184,299.5184,0,0,0,6.25483-42.72559c-16.07624-1.32776-25.57868-5.80371-34.81433-10.15686C652.21485,403.54611,641.833,398.65255,620.51368,398.65255Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M741.65211,284.95639c-12.10743-37.30194-13.65436-80.3277-36.25013-111.38007-22.82257-31.35138-63.41442-46.02673-94.77618-68.83905-31.05231-22.5957-57.42255-56.81415-94.72461-68.92157-35.98187-11.68457-77.26471.10315-117.145.10315s-81.163-11.78772-117.145-.10315c-37.30194,12.10742-63.67224,46.32587-94.72455,68.92157-31.36181,22.81232-71.95361,37.48767-94.77624,68.83905-22.59576,31.05237-24.1427,74.07813-36.25012,111.38007-11.66394,35.95105-36.0954,71.53076-36.0954,111.38006,0,39.84937,24.41083,75.38782,36.0954,111.38007,12.10748,37.31232,13.65442,80.33807,36.25012,111.38007,22.82263,31.36181,63.41449,46.02679,94.77624,68.84942,31.05231,22.59577,57.42261,56.80383,94.72455,68.92157,35.98194,11.68463,77.26477-.1134,117.145-.1134s81.163,11.798,117.15528.1134c37.29162-12.11774,63.662-46.32587,94.71429-68.92157,31.36176-22.82263,71.95361-37.48767,94.77618-68.84942,22.59577-31.05231,24.1427-74.07807,36.25013-111.38007,11.66406-35.951,36.09539-71.4895,36.09539-111.38007C777.7475,356.45627,753.31617,320.90744,741.65211,284.95639ZM399.10249,725.20266c-181.87952.0962-328.80518-146.74206-329.12958-329.121C70.6446,213.94919,216.27906,70.56717,392.5182,67.529c187.22821-3.22754,332.834,146.93811,334.99609,324.238C729.76447,576.28952,581.35535,725.10629,399.10249,725.20266Z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 792 792\"\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1 {\n fill: #fff;\n }\n \u003c/style\u003e\n \u003c/defs\u003e\n \u003cpath class=\"cls-1\" d=\"M402.5229,96.16562c-154.49622-1.81855-280.08545,111.53747-300.82166,257.3861,18.18463.8946,28.32349,5.67072,38.15668,10.3064,6.42492,3.0285,12.64776,5.95764,20.92779,7.88855,17.406,1.9483,34.48792,1.18353,50.90991-6.00128,8.65455-3.78644,17.059-8.22,26.23609-10.74347,12.06073-3.31635,24.33423-3.70508,36.74029-2.93323a81.61615,81.61615,0,0,1,21.24286,4.35767,108.50422,108.50422,0,0,1,18.95868,7.43078c3.69989,1.74427,7.33338,3.45514,11.32984,4.96241a95.606,95.606,0,0,0,31.18744,3.78784A109.1017,109.1017,0,0,0,379.835,369.6196c.61273-.15271,1.76434-1.20942,1.98932.41925a5.6943,5.6943,0,0,1,.0849,1.28149c2.22662-.57587,4.30823-1.22314,6.28912-1.92468v-4.37049c-.00006-3.59729-.23706-3.8515-3.72235-3.85449-7.89722-.00677-15.79492.04724-23.69134-.03174a12.425,12.425,0,0,0-6.52985,1.87989c-5.47083,3.15844-10.9035,2.51306-15.60663-1.70227-3.95355-3.54358-5.09-9.64313-2.788-14.96357,2.95929-6.83923,12.14642-9.64764,18.41925-5.58935a11.3715,11.3715,0,0,0,6.50616,1.94147c7.97858-.07856,15.95844-.02283,23.93775-.03315,3.0368-.004,3.4646-.44244,3.47357-3.4563.00787-2.6336-.11634-5.27435.03979-7.89874.12006-2.01721-.74438-3.00689-2.51544-3.76526-7.2923-3.12256-13.76886-7.34228-18.01392-14.30212-14.78961-24.24786-.19342-51.56635,24.04645-56.4007a37.12879,37.12879,0,0,1,40.17755,19.57807c8.14331,16.34851,4.16242,38.98028-15.7044,49.0921-2.784,1.417-4.0893,3.09405-3.77161,6.2981a72.492,72.492,0,0,1,.04144,8.85217c-.03473,1.4505.55744,2.016,1.96314,2.01269,8.141-.01892,16.282-.00683,24.42309-.01288a7.33724,7.33724,0,0,0,3.91346-1.6231,12.88345,12.88345,0,0,1,16.069,1.34008,13.51634,13.51634,0,0,1,3.73883,12.27125c2.05615.32867,3.99444.713,5.83264,1.14373.321-1.30749,1.12-1.00988,2.06061-.74414a108.12148,108.12148,0,0,1,19.0064,7.60932c22.32489,11.19543,45.5868,12.55822,69.49158,6.74017,7.43884-1.81049,14.30518-5.325,21.19538-8.61041a92.65783,92.65783,0,0,1,38.52258-9.05774c13.43316-.27063,26.55249,1.127,39.07751,6.2904,3.67426,1.51471,7.23542,3.30475,10.91675,4.80011,1.9079.775,2.78882,1.93659,2.5614,3.95441a79.008,79.008,0,0,0,26.7356,6.83966C686.63056,219.19272,558.61689,98.003,402.5229,96.16562ZM297.134,216.14224c-5.11951,5.21381-11.36713,8.04-18.90009,7.34009a15.47784,15.47784,0,0,1-10.06457-4.94916,45.53557,45.53557,0,0,1-9.67554-14.97052c-3.61609-9.56476.29218-19.16,9.38873-24.14282a26.90963,26.90963,0,0,1,12.529-3.41486,15.20483,15.20483,0,0,1,12.24151,5.4112c1.3523,1.54223,1.325,3.0487-.412,4.25207-3.50494,2.4281-7.17987,4.00983-11.59735,2.17786-3.30865-1.37213-7.004-.12946-9.67352,2.8811-2.14453,2.41846-2.41034,5.1955-.53784,8.62219,1.63867,2.99884,3.43439,5.91877,5.28876,8.79084,1.72149,2.66632,3.92083,4.69641,7.46551,3.98162,4.21619-.85015,7.15485-3.60321,7.6742-7.4439.62243-4.60273,3.41662-7.37323,7.35113-9.23639,1.878-.88935,3.11841-.22748,3.85724,1.7904C304.80421,204.70266,302.30054,210.88052,297.134,216.14224Zm83.16363-27.42035c-.63562,1.20154-1.85357,1.45844-3.01379,1.67017-7.97,1.45465-15.94739,2.86847-23.92267,4.29376-1.01617.18164-2.031.37408-3.05163.52685-3.16.473-4.05146-.11-4.597-3.223-1.63373-9.3222-3.22229-18.6524-4.82727-27.97973-.61987-3.60205-1.23627-7.20472-1.77856-10.36567.11364-2.74292,1.59552-3.61206,3.57959-3.92907,5.02685-.8031,10.0636-1.54645,15.0838-2.38861,3.449-.57856,6.86352-1.36817,10.31793-1.9068,3.59906-.56116,4.29083.01324,5.00183,3.60461,1.20654,6.09467.94464,6.433-5.30023,7.37616-4.0072.60516-8.00726,1.26062-12.00275,1.93933-2.24426.38123-3.12079,1.57074-2.80719,3.63434.41663,2.74188,1.15894,3.46112,3.73639,3.06116,4.16211-.64594,8.30615-1.42151,12.43964-2.23487,3.5589-.70025,4.634-.10076,5.46991,3.38361.18475.77.23358,1.5719.36041,2.35663.52069,3.22186-.31036,4.465-3.41809,4.9892-4.00165.675-7.99524,1.42535-12.01862,1.93591-3.898.49463-3.90637,1.94867-3.14428,5.5802.40594,1.93433,2.23339,1.78381,3.75927,1.52136,4.69934-.80817,9.38465-1.69751,14.08136-2.5213.85749-.15045,1.74329-.13776,2.61548-.2066a2.42644,2.42644,0,0,1,1.75537.63733C379.19434,180.9526,380.63306,188.08767,380.29761,188.72189Zm76.1059-10.73926c-1.78729.81336-2.11041,2.00135-1.52673,3.84864,1.29059,4.08453,2.42883,8.21905,3.54669,12.35546.61114,2.26117-.0957,3.30506-2.4198,3.13251-6.32275-.46954-8.90039-.32757-11.10089-7.66662-.84314-2.81208-1.80268-5.59656-2.48865-8.44666-.75684-3.14423-2.67511-3.50891-5.63727-3.39679-1.00757.03815-1.16858.80481-1.3374,1.661-.53894,2.73346-1.11426,5.46344-1.79944,8.16333-.55078,2.17017-1.61987,4.11859-4.04669,4.52246a9.51769,9.51769,0,0,1-7.577-2.10089c-1.30493-1.03064-.72345-2.67877-.45678-4.05475q2.86248-14.76745,5.80084-29.52014c.5542-2.807,1.09308-5.61761,1.70465-8.41223.34509-1.577,1.26465-2.65375,3.03619-2.31506,8.4181,1.60925,17.0409,2.49658,24.93128,6.12823,4.89722,2.254,7.44079,6.73291,7.46619,12.08807C464.23151,170.04434,462.42658,175.2416,456.40351,177.98263Zm90.60071,18.92847c-1.06482,1.795-1.87232,3.94232-4.47992,4.35156a9.71935,9.71935,0,0,1-1.50665-.48236c-.85028-.421-1.65479-.934-2.48267-1.40088-5.82989-3.28814-6.48853-3.44836-9.87756,1.96668-4.24121,6.77661-8.567,13.50067-12.89337,20.22357-1.92768,2.9956-3.09986,3.18927-6.005,1.20251-.98-.67028-1.97076-1.327-2.97949-1.95306-3.19476-1.98273-3.45276-3.06232-1.384-6.33179,3.13311-4.95172,6.30908-9.87634,9.43682-14.83142,1.98938-3.15179,3.83613-6.39807,5.93384-9.47442.695-1.01923.42249-1.47535-.22351-2.17841-1.548-1.68475-3.68262-2.44562-5.57922-3.56494-3.23151-1.90735-3.79108-3.68451-1.92127-6.81464,2.53937-4.251,4.06842-4.81842,7.49115-2.66076q12.56022,7.91811,25.08295,15.89581C548.60755,192.76883,548.8437,193.81021,547.00422,196.9111Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M442.72083,158.28878c-3.1651.06525-4.64532,1.55146-4.63122,4.66095-.19031,3.27375,1.9967,5.87629,5.51245,5.414a13.4233,13.4233,0,0,1,3.056.21484c2.06354.20648,3.96106-.35828,4.89429-2.52673a4.1206,4.1206,0,0,0-1.13422-5.15448A10.7271,10.7271,0,0,0,442.72083,158.28878Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M170.65815,413.64822a129.16793,129.16793,0,0,0,15.26276-.33783c11.6372-.91949,22.39276-4.5979,32.75543-9.69757a100.34565,100.34565,0,0,1,43.64422-10.81909,113.83117,113.83117,0,0,1,19.41974,1.36444c15.32361,1.45148,24.56848,5.807,33.55951,10.04614,7.69544,3.628,15.09711,7.11267,26.1612,8.87708a123.233,123.233,0,0,0,22.45147.29345,83.07847,83.07847,0,0,0,16.43732-2.90545c1.18567-.33112,1.46295-.02967,1.5321,1.07373,2.23865-.58643,4.3263-1.24756,6.31659-1.96167q0-18.5137-.00012-37.02741c-7.6886,2.59864-17.02161,4.47254-30.21155,4.47254-12.75592,0-21.9013-1.754-29.44384-4.21973a100.82654,100.82654,0,0,1-19.69477-7.55035,100.04332,100.04332,0,0,0-17.45025-6.85932,98.46911,98.46911,0,0,0-20.917-1.99609c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508a102.989,102.989,0,0,1-20.34424-1.837,83.72829,83.72829,0,0,1-17.76337-3.77c-5.80963-1.95373-11.29419-4.6831-16.92523-7.06384-1.6239-.68652-1.38226-1.88654-1.03045-2.87823a81.11373,81.11373,0,0,0-25.61438-4.94733A302.73549,302.73549,0,0,0,98.70734,393.695c20.31159.49225,31.11719,5.57929,41.57734,10.51026C148.91834,408.27487,157.17866,412.16647,170.65815,413.64822Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M271.34248,598.38107c1.05334.61353,1.51733.55457,1.86108-.59924a57.927,57.927,0,0,0,2.57269-12.21173c-1.97644,1.50976-3.543,2.68414-5.08575,3.889C264.98438,593.91543,265.06867,594.72738,271.34248,598.38107Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M405.38569,621.05063c-.22046.23364-.37653.32537-.41809.4541q-1.17143,3.62923-2.31769,7.26666c-1.99439,6.3194-1.5014,6.87036,5.15771,6.16656,1.86506-.19708,2.37342-.93328,1.71717-2.66845C408.12556,628.56991,406.78309,624.8489,405.38569,621.05063Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M182.96534,462.78048c1.63122,0,3.19055-.03222,4.69781-.08813a85.18642,85.18642,0,0,0,24.70343-6.80609c7.18256-3.20764,14.22535-6.76868,21.73194-9.20661a96.4645,96.4645,0,0,1,29.90576-4.36474q2.42633-.1215,5.04828-.14874a10.32123,10.32123,0,0,1,2.45276-.003c3.28405.02417,6.33343.16181,9.175.39875q4.71259-15.14209,9.52155-30.254c.95068-2.98755,3.80347-3.611,5.9353-1.29449q11.97693,13.01458,23.87714,26.09991c2.15076,2.3576.90716,5.38153-1.949,5.68573a16.074,16.074,0,0,0-1.8551.45367c-1.88251.43415-2.03015,1.41675-1.09155,2.96479a78.22153,78.22153,0,0,0,6.64069,9.3659c9.012,3.973,19.023,7.197,36.22747,7.197a112.38881,112.38881,0,0,0,11.5636-.56018,82.83657,82.83657,0,0,0,10.65589-2.23144c.80444-.22742,1.24554-.29511,1.47625.07074,2.31494-.60828,4.46607-1.29785,6.51606-2.04309q0-21.57716-.00013-43.1543c-7.70507,2.57117-17.0559,4.41632-30.21167,4.41632-2.28534,0-4.45031-.05835-6.51745-.16376a93.54231,93.54231,0,0,1-39.017-8.95526c-5.101-2.41394-10.14118-5.019-15.41254-6.99389a74.796,74.796,0,0,0-17.36853-4.17542c-2.82831-.21912-5.87683-.33765-9.19031-.33765-21.3208,0-31.7041,4.89356-42.69775,10.0752-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078-2.93555,0-5.67749-.09393-8.25836-.2652a98.67563,98.67563,0,0,1-28.75452-4.01226c-6.93359-2.1438-13.40277-5.41864-20.02759-8.31305a1.5384,1.5384,0,0,1-1.10174-1.6186c.02795-.66265.03247-1.32788.03033-2.00842-6.8388-2.36889-14.89264-4.0885-26.14929-4.36609a305.17549,305.17549,0,0,0,3.46277,43.63263c18.33227.95374,28.59308,5.78479,38.544,10.47541C151.59522,457.9338,161.87647,462.78048,182.96534,462.78048Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M376.26252,468.6802a26.55722,26.55722,0,0,1-10.205.85212c-2.52679.16131-5.209.24816-8.07068.24816a101.21659,101.21659,0,0,1-23.58245-2.48736c.16992.11828.32934.24731.50079.36407,4.39343,2.9914,9.66644,4.45118,14.79767,5.88678a203.78708,203.78708,0,0,0,35.22418,6.41919c2.46667.24048,3.24725-.43628,3.26141-3.12585.02-3.80591.01868-7.61194.01508-11.418a80.21566,80.21566,0,0,1-9.20807,2.43976C378.26679,468.09884,377.36884,468.35367,376.26252,468.6802Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M470.42487,453.25149a77.765,77.765,0,0,0-16.1394-3.01983c-3.57233-.27613-7.15534-.41352-10.73358-.6131a95.45289,95.45289,0,0,0-22.75031,2.5697,5.04666,5.04666,0,0,1-.52472.10669,78.13,78.13,0,0,0-7.76,2.682q0,10.70278.00006,21.40545c.00006,4.51575.04786,4.50983,4.53559,4.31714a165.17283,165.17283,0,0,0,29.48706-4.29816c13.77606-3.12469,24.343-10.62445,32.82446-21.05792-2.31689-.96008-4.73236-1.85864-7.34039-2.65832A2.5241,2.5241,0,0,1,470.42487,453.25149Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M491.64625,410.48489a177.34737,177.34737,0,0,0-19.18274-8.21747c-6.9895-2.16052-15.355-3.61487-26.97132-3.61487-15.12084,0-24.73645,2.46271-32.97113,5.74256q-.00328,8.22015-.00427,16.44031,0,13.32129.00006,26.64251c2.20691-.81262,4.54071-1.57086,7.05609-2.2464.68329-.70123,1.972-.93274,4.42176-1.32684q4.81621-.7749,9.62036-1.19012c3.59967-.35865,7.53125-.55909,11.87713-.55909,17.93964,0,28.87177,3.39222,38.15784,7.4021.61054-1.06878.45886-1.80871-1.21869-2.2962-6.37555-1.85272-6.77484-3.54608-1.95343-8.21027q11.43156-11.05882,22.96283-22.01471a7.39453,7.39453,0,0,1,1.91242-1.36639,90.74841,90.74841,0,0,1-10.66956-3.9555A22.22373,22.22373,0,0,1,491.64625,410.48489Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M417.67707,293.412a18.87075,18.87075,0,0,0-37.72839-.96045c-.3172,11.24109,7.55853,19.34986,19.06469,19.62885C409.01221,312.32284,417.43043,303.90249,417.67707,293.412Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M240.43684,357.81717q-2.34394.56469-4.6955,1.2304c-6.57947,1.86231-12.72058,5.0011-18.86987,7.96967a85.487,85.487,0,0,1-13.12415,5.04156c8.98975-1.91784,15.54749-5.004,22.33032-8.20068A128.72432,128.72432,0,0,1,240.43684,357.81717Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,356.40109c-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-7.88782-3.71863-15.46937-7.28839-26.93274-9.04254-.11274.24121-.22522.4826-.35462.71564A13.249,13.249,0,0,1,446.40247,364.52a3.40047,3.40047,0,0,1-1.3244-.51715c-4.0766-3.46509-8.93823-2.76294-13.67084-2.5456a145.18227,145.18227,0,0,1-16.01208.15113c-2.3587-.1521-2.93317.70684-2.92359,2.962q.07333,17.23536.05091,34.47107c1.99322-.74255,4.08887-1.44141,6.32989-2.07428.13117-1.59051.714-1.75946,3.37146-2.21966,18.05109-3.12592,35.932-2.95844,53.45587,3.064,7.82514,2.68933,15.10322,6.67615,22.76435,9.76044,1.09625.44134,2.18554.90014,3.39251,1.39807-.06726.07782-.12261.14111-.17242.19794a74.577,74.577,0,0,0,13.60217,3.7113c-.04162-.14124-.08111-.2702-.12359-.41791a129.65539,129.65539,0,0,0,18.80407,1.301,90.35546,90.35546,0,0,0,40.79065-9.45612c9.96558-4.861,20.18641-9.03314,31.34485-10.45074a126.50578,126.50578,0,0,1,33.333.15429c11.518,1.58264,21.9101,6.38507,32.28717,11.23407.38269.17884.71021,1.169.89386,2.27613a77.88352,77.88352,0,0,0,25.73029,6.37744c.33178-5.86261.515-11.764.50488-17.70984.00348-6.57013-.22705-13.08307-.63831-19.54566-15.96423-1.30786-25.39477-5.75079-34.56134-10.07141C652.53712,361.341,642.05665,356.40109,620.51368,356.40109Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M576.78919,529.12356a20.14686,20.14686,0,0,0-6.69092,6.31964c-.37762.56385-.6322,1.16675-.137,1.7464a23.34732,23.34732,0,0,0,5.3313,4.682.88174.88174,0,0,0,1.10113-.14764,20.74806,20.74806,0,0,0,5.83368-8.65528C582.31428,530.27926,578.87312,527.92129,576.78919,529.12356Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M646.84675,452.6232c-1.21515-.33576-2.439-.64856-3.68469-.90412-10.39283-2.13232-20.8537-2.29211-31.38-1.56439-12.06036.83374-23.13,4.92072-33.812,10.24652a98.412,98.412,0,0,1-48.795,10.22516,112.23651,112.23651,0,0,1-20.11219-2.4007c-1.0849-.244-1.59979-.54034-1.272-1.33538-2.02924-.52515-3.94171-1.1037-5.7616-1.7229a119.47954,119.47954,0,0,1-7.97,11.39355c-9.49524,11.939-20.73309,21.86926-34.21795,29.00372-10.11261,5.35022-20.37091,10.5033-31.53,13.46228a36.56239,36.56239,0,0,1-8.19916,1.445c-2.50464.078-4.26166,1.35773-5.94074,3.03595-3.77929,3.7771-7.62872,7.4845-11.478,11.1908q-3.95938,3.81216-7.93152-.05585-6.4238-6.26733-12.77643-12.60693a6.78779,6.78779,0,0,0-3.68048-1.99469c-20.80359-4.064-38.77234-13.92633-54.96387-27.25025A122.73,122.73,0,0,1,292.256,453.8287a8.04176,8.04176,0,0,0-2.27118-2.92157q-2.17374-.438-4.55408-.77789c-.25946.038-.52563.08209-.8045.13708a4.65338,4.65338,0,0,1-4.06561-.69207c-2.13233-.18671-4.39295-.31452-6.80219-.37531.20618.906-.73071.74164-1.34113.72553-4.37793-.1156-8.75164-.16925-13.13488-.074q-1.16547.02537-2.32093.08759c-12.56323,1.5719-20.48614,5.30139-28.752,9.197-9.23547,4.35235-18.7392,8.82519-34.70685,10.20892-.9057.14124-1.81518.27136-2.733.3761-19.64069,2.24109-38.77521.92053-56.92139-7.754-.65436-.31281-1.328-.51855-1.51776-1.34991-.33179-1.45343-.67169-2.913-1.02692-4.43244a78.00412,78.00412,0,0,0-27.96411-6.77826,299.7383,299.7383,0,0,0,295.54444,247.1543c141.47577-.04816,259.20587-97.47815,291.28753-228.12329-11.74224-1.93024-19.66131-5.65827-27.39209-9.30237A113.2795,113.2795,0,0,0,646.84675,452.6232ZM216.93623,571.919c-2.82074,2.22028-3.90528,2.03662-6.04407-.76843-.77-1.00989-1.58374-1.99084-2.43213-2.936-1.79944-2.00458-1.74823-3.53821.34-5.26191,3.49952-2.88867,7.04395-5.72284,10.55591-8.59655.51044-.41767,1.48267-.74366,1.14814-1.52979-.28565-.67132-1.24915-.592-1.947-.54706-1.58715.10242-3.17193.26233-4.75213.44648-5.27234.61444-8.39667-3.10376-6.81183-8.15241.76086-2.42389,1.57434-4.83118,2.36243-7.247-.00074-.1748.00006-.34857.00085-.5224l-.30347.22363c-4.17114,2.65839-7.71533,6.1048-11.55114,9.18482-.62055.49829-1.23731,1.00568-1.8924,1.45569a2.72573,2.72573,0,0,1-3.36578.05444,16.46026,16.46026,0,0,1-5.19666-6.69391c-.63165-1.65417.81665-2.77234,1.98346-3.71777,5.3205-4.311,10.69275-8.55823,16.00452-12.87988q6.20452-5.04822,12.29706-10.23291c1.61615-1.38068,3.02289-1.57154,4.54944.04583.76336.80872,1.64349,1.5058,2.43847,2.28632,2.45246,2.40784,2.746,5.11523,1.46839,8.283-2.13141,5.28454-4.04767,10.65582-6.16877,16.29431,5.56031-.8,10.8241-1.50256,16.06849-2.32843a10.35793,10.35793,0,0,1,10.99029,5.40613c1.02026,1.92315.3468,3.28863-1.20416,4.5393q-10.689,8.61933-21.33472,17.2923C221.73023,567.97427,219.37489,569.9993,216.93623,571.919Zm72.11889,9.16742c-2.62823,10.57587-5.1626,21.17493-7.75586,31.75946-.50781,2.07257-1.31207,4.04456-1.40747,6.24738-.09118,2.10583-1.47876,3.01013-3.61926,2.77759-3.911-.42481-6.89349-4.68421-6.69025-9.82019.51453-1.7724-.39551-2.87964-2.03723-3.86536-3.259-1.9566-6.42389-4.07495-9.57269-6.20783a2.40866,2.40866,0,0,0-3.38037.2284c-3.42371,2.913-4.65637,2.92724-8.4126.39258-.856-.57764-1.66754-1.22107-2.51758-1.808-2.61859-1.80786-2.72394-2.5813-.15167-4.59936,10.4508-8.199,20.95984-16.324,31.43011-24.49842a3.91184,3.91184,0,0,1,5.21045-.18158c2.38666,1.68122,5.24457,2.61127,7.41205,4.67566A4.63191,4.63191,0,0,1,289.05512,581.08639Zm69.34406,28.72895c-2.75873,9.72839-5.53766,19.45092-8.26831,29.18719-.53626,1.91211-.89728,3.87372-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68921,2.0617c-6.48553-.48132-8.094-1.4942-9.7807-7.0473-1.81854-5.98712-3.99835-11.86469-6.04162-17.78284a23.37065,23.37065,0,0,0-1.13672-2.25226c-1.38007,5.0849-2.68274,9.53174-3.7854,14.02759-1.80652,7.3656-2.48346,7.06977-8.85968,5.2735-4.04834-1.1405-4.66589-2.20117-3.4867-6.34491,3.31141-11.63684,6.93665-23.189,9.59833-35.00256a2.5467,2.5467,0,0,1,3.026-2.2757c5.63513.30878,7.73993,1.8891,9.51648,7.23566q3.29434,9.91379,6.60419,19.82251l.517-.02533c1.43768-5.3819,2.88659-10.76087,4.30932-16.14673,1.08246-4.09778,2.22059-4.75146,6.34736-3.57513.613.17474,1.2268.34655,1.84014.52C359.116,604.53134,359.63459,605.45865,358.39918,609.81534Zm66.33374,41.3056a31.21624,31.21624,0,0,0-3.31543.3045c-3.30426.52423-5.34619-.459-6.19922-3.69092-.6695-2.53692-2.11316-2.97674-4.3595-2.85253-3.49542.19329-7.0022.30114-10.50146.25262-1.79334-.02478-2.9812.57135-3.38044,2.28009-.84252,3.60675-7.48266,6.07221-10.763,5.31494-2.13043-.49182-2.33429-2.02453-1.73687-3.91229q3.6339-11.48382,7.18567-22.99359c1.39331-4.48065,2.83593-8.94776,4.12365-13.45886.82416-2.887,2.28492-4.7215,5.527-5.02057,1.6427-.15155,3.29694-.43323,4.68848-.59784,4.03882-.02161,6.27331,2.15875,7.75213,5.32031,2.355,5.035,4.13831,10.30029,6.11536,15.48669q3.77024,9.89008,7.47845,19.80378C428.44544,650.30307,427.943,650.959,424.73292,651.12094Zm61.93072-14.93512c-7.67676,5.64844-18.118,5.75622-25.14856.29059-2.74762-2.136-4.31036-5.11835-5.58221-8.20349a69.40878,69.40878,0,0,1-3.74182-12.5398c-1.08252-5.28534.51916-9.8949,4.1311-13.84473a23.66261,23.66261,0,0,1,24.96265-6.097,14.1232,14.1232,0,0,1,6.80536,5.42371c1.07153,1.55883.6936,2.768-1.03547,3.36761-4.1314,1.43311-8.16992,2.86017-12.70208.95325a7.46405,7.46405,0,0,0-10.24408,7.86706,28.5953,28.5953,0,0,0,5.0581,13.73664c1.8299,2.552,4.45478,3.16534,8.12763,2.03613,3.05664-.93982,5.57428-3.78162,5.65838-6.4289.0409-1.28613-.60827-1.94647-1.90832-1.79455a8.82338,8.82338,0,0,0-1.34155.47052,6.40346,6.40346,0,0,1-1.84473.44171c-3.85175-.09259-2.9812-3.74066-4.19263-5.78784-.84564-1.429-.64258-3.15466,1.118-3.83814,4.35645-1.69128,8.76868-3.24963,13.20789-4.71124a2.67,2.67,0,0,1,3.32092,1.69879,33.7795,33.7795,0,0,1,3.35694,13.06592C494.73774,628.50082,491.36121,632.72952,486.66364,636.18582Zm69.22626-38.1579q-9.716,6.94986-19.48462,13.82587c-2.55218,1.8006-3.51459,1.71454-5.33545-.82575q-10.78527-15.04641-21.44122-30.18512c-1.79071-2.54339-1.472-3.71783,1.08862-5.54327q10.209-7.27743,20.41614-14.55725c2.45355-1.75043,3.87207-1.5976,5.57507.887,1.01441,1.48,2.48627,2.75916,2.5838,4.97125.10474,1.08259-.6759,1.82044-1.63635,2.49006-3.8529,2.68634-7.7102,5.36724-11.51977,8.11407-.90979.656-2.306,1.15558-2.02369,2.64941a5.73405,5.73405,0,0,0,2.79834,3.70954c.88221.55121,1.7956-.14575,2.59229-.72235,3.67541-2.65961,7.40515-5.24591,11.03442-7.96649a2.61631,2.61631,0,0,1,3.97364.31378c.2749.28857.59191.54168.8396.851,4.21167,5.259,3.48754,6.08032-.75293,8.83618-2.93287,1.90607-5.74292,4.00373-8.57776,6.05731-2.4364,1.7649-2.56977,2.71912-.84088,5.09339,1.43859,1.97558,2.45636,2.12512,4.82543.452,3.77033-2.66284,7.44916-5.45562,11.23005-8.1029,2.88971-2.02319,3.739-1.82013,5.85876,1.0108C560.64436,594.12875,560.59193,594.66452,555.8899,598.02792Zm54.19134-57.88849c-2.52319,4.95264-6.37615,8.55329-13.14465,6.19287a43.08247,43.08247,0,0,0-7.00433-1.47143,4.60675,4.60675,0,0,0-5.13135,3.59094c-.28046,1.141.60931,1.39056,1.15033,1.834,2.45709,2.014,4.9649,3.96668,7.46906,5.92273a2.94245,2.94245,0,0,1,.67877,4.40339,35.24864,35.24864,0,0,1-3.30707,4.35467c-1.7594,1.904-3.135,1.98743-5.22522.37018-4.52466-3.50055-8.97589-7.09577-13.48523-10.61627Q565.03877,549.222,557.9372,543.799c-3.63037-2.75855-3.89929-4.2699-1.09234-7.82605,3.49566-4.42865,6.93707-8.90607,10.58752-13.20484,3.03918-3.579,6.7898-6.0296,11.16846-5.85131,8.1596.22143,13.74292,5.3045,14.7619,12.90515.55707,4.15545.70129,4.23864,4.977,4.93512,3.38171.551,6.749,1.20227,10.10516,1.89416C610.814,537.13962,611.18531,537.9722,610.08124,540.13943Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,398.65255c-20.44885,0-30.837,4.502-41.35242,9.44184-.05877.02972-.1181.05737-.17682.08722-2.29156,1.16473-4.60614,2.228-6.93908,3.21075-9.48011,4.20923-20.47535,7.88617-39.04731,7.88617a99.68618,99.68618,0,0,1-23.72845-2.55432,6.72887,6.72887,0,0,1,.844,2.03717q4.00782,15.95288,7.797,31.96039c.87878,3.70355-1.83844,6.2522-5.5744,5.41785a12.16764,12.16764,0,0,1-1.82672-.5459c-1.85224-.73389-2.9823.02093-3.87189,1.64984-.32111.588-.64917,1.17145-.97632,1.75549,7.04968,2.2511,15.48694,3.78143,27.33679,3.78143,21.08887,0,31.37207-4.84668,42.25977-9.97753,11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,4.33746,0,8.26263.19959,11.85681.55695a92.46681,92.46681,0,0,1,31.39307,8.26813c1.10974.51916,3.04547.76483,3.05047,1.93213.00055.12573-.00866.252-.01275.37805,7.28058,3.42523,14.45874,6.6546,24.96331,8.31848a299.5184,299.5184,0,0,0,6.25483-42.72559c-16.07624-1.32776-25.57868-5.80371-34.81433-10.15686C652.21485,403.54611,641.833,398.65255,620.51368,398.65255Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M741.65211,284.95639c-12.10743-37.30194-13.65436-80.3277-36.25013-111.38007-22.82257-31.35138-63.41442-46.02673-94.77618-68.83905-31.05231-22.5957-57.42255-56.81415-94.72461-68.92157-35.98187-11.68457-77.26471.10315-117.145.10315s-81.163-11.78772-117.145-.10315c-37.30194,12.10742-63.67224,46.32587-94.72455,68.92157-31.36181,22.81232-71.95361,37.48767-94.77624,68.83905-22.59576,31.05237-24.1427,74.07813-36.25012,111.38007-11.66394,35.95105-36.0954,71.53076-36.0954,111.38006,0,39.84937,24.41083,75.38782,36.0954,111.38007,12.10748,37.31232,13.65442,80.33807,36.25012,111.38007,22.82263,31.36181,63.41449,46.02679,94.77624,68.84942,31.05231,22.59577,57.42261,56.80383,94.72455,68.92157,35.98194,11.68463,77.26477-.1134,117.145-.1134s81.163,11.798,117.15528.1134c37.29162-12.11774,63.662-46.32587,94.71429-68.92157,31.36176-22.82263,71.95361-37.48767,94.77618-68.84942,22.59577-31.05231,24.1427-74.07807,36.25013-111.38007,11.66406-35.951,36.09539-71.4895,36.09539-111.38007C777.7475,356.45627,753.31617,320.90744,741.65211,284.95639ZM399.10249,725.20266c-181.87952.0962-328.80518-146.74206-329.12958-329.121C70.6446,213.94919,216.27906,70.56717,392.5182,67.529c187.22821-3.22754,332.834,146.93811,334.99609,324.238C729.76447,576.28952,581.35535,725.10629,399.10249,725.20266Z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CAProviderClass", diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json index f0ef37d2809..985f177006e 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json index dc4f06c1ef2..d6b7e5b74be 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json index 6cb5d83987c..09ce1f80e3d 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "BlockChaos", diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json index cfd1b556fde..b8f7944f3b5 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json index 2c4a1cd86c9..ad92e80701a 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json index 53509dbd9a6..3180b906ad5 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json index 59b6e47dd75..07907ee2f4e 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json index b12b1471b40..02bc4058adf 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json index 99734c55f02..0181597e6dd 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json index ddf4143aed0..8753a342826 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json index 82b5dadd404..b4e72cdedb8 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json index 54fa954289c..cc44adcb6e4 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json index b284e023229..240e7fa0b87 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json index ddf14a3c3f1..e99e7ce9da0 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json index 254401a282f..52c879fdd36 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json index b4a4cc2ed50..3652772b1a8 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json index 41d1635def4..c104d4e48b2 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "RemoteCluster", diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json index eff3b4178a8..6f2caf547fb 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json index 932e4e13585..ad580dbf87c 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json index 5dca8fbfd22..d32a6537d2b 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json index 5ce69978832..959bd4daef3 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json index 0898e3efeea..e623afa9e3c 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json index a6328e85bf5..60d3ce59b02 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#4ccaf8", + "secondaryColor": "#ef5e80", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json index f1b9296dddf..002794b5e91 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "AWSChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json index 4acf195b697..bf10cf704f7 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "AzureChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json index 0f8a49a95ff..9b74f5ece10 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "DNSChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json index 16885a0411c..1faf1452eed 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "GCPChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json index 07e8c9ae9d4..bf57b7fab5f 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "HTTPChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json index cf686ced30f..4d628c04aba 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "IOChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json index 3efb973a419..51dc8ae2236 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "JVMChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json index f578184e50b..c6493c039ae 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "KernelChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json index e0ac1fc2dcc..12bb12694d3 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "NetworkChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json index 391097a8583..e4e304bae0a 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PhysicalMachine", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json index 44b76c33433..68c5e394800 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PhysicalMachineChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json index a910c7c8021..6f5ca0dc480 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json index d224e9c3fe5..bee502228fc 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodHttpChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json index 68ae70bca92..a2cf7f8be62 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodIOChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json index 0d5bfb1a1ae..fdd827039c5 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodNetworkChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json index 295d0a80c3f..03fcfd5ec65 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Schedule", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json index 5561445c334..ebf0ace3b05 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "StatusCheck", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json index 7d6976d0856..477ead4afb0 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "StressChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json index 61154598951..2db581c3332 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "TimeChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json index 923818c154a..f09fde27138 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Workflow", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json index dee3479fe8d..548de14a1b6 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "WorkflowNode", diff --git a/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json b/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json index 9c70cbf0cd2..ac2bb50b01f 100644 --- a/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json +++ b/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ChaosBlade", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json index 768e18c3dde..2aba9d8a605 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Environment", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json index 73504d8963e..19b7e4f25ab 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "GitRepository", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json index 9a16b74d9b8..8d768c6de9d 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "HNCConfiguration", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json index 89c4aee966f..8a179c4f8c7 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "HierarchyConfiguration", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json index 22465cdc576..ade4c877821 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "SubnamespaceAnchor", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json index e3a2a942c46..1c85cb9036f 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ClusterObjectSync", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json index 11e4eec6876..08f04159cbe 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Device", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json index 1c0dbae2d34..fb9f354b308 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "DeviceModel", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json index be7f8de9384..b5378219648 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "EdgeApplication", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json index fa88f122742..ec797a3805c 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "NodeGroup", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json index 46e640c92d0..e94c7c848c6 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ObjectSync", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json index 1bf206ba695..fdf093d1508 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Rule", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json index bb7d54e8f17..69007f707e1 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "RuleEndpoint", diff --git a/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json b/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json index f3f8851a793..2ca8f93186f 100644 --- a/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json +++ b/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "CloudflareTunnel", diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json index 6eba0e9ab5b..a11b5edced2 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json index 8fa1c752a61..756393de31b 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json index 9744a283f6a..027c7f34e9f 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json index e6581dcf6b7..93801956c72 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json index b9b75c4545f..769bc61ec3a 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json index ee8b8a1f5da..1d92daebc8e 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json index 2c4237bd4df..dad3fcea01b 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json index 2e177a2a360..b41478e7721 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json index de436211001..3e565a05a35 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json index 8949eb47de2..4b724961ced 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json index edf69c70a95..842c091bf3e 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "IngressClassParams", diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json index 22f46ce2a16..c9fa51703a6 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json index 1401b31c670..1f09b2b34bf 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json index e6f0d185642..fd5c2299361 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json index 917d56e8766..e1e5dc41646 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json index 51e5357f01f..54ac5eeaca4 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json index 99ae5f5a792..60072d10985 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json index b913f59c392..3d2ae05a75d 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json index 288655890e9..0a26d62c9b8 100644 --- a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json +++ b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Cluster", diff --git a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json index f6d29413765..3244942de34 100644 --- a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json +++ b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ClusterFeature", diff --git a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json index c5cfcc21885..8b24a910e01 100644 --- a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json +++ b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ResourceSyncRule", diff --git a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json index 84244a5715d..9bb40ae5180 100644 --- a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json +++ b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json index 966c8ec4dbd..5dbea92b838 100644 --- a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json +++ b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json b/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json index 8bb8ed8374d..0b17f4446aa 100644 --- a/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json +++ b/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ClusterSecret", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json index a3ac57c2dd7..6c3bd595857 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "IPAMBlock", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json index 0bf4c2b5c6d..3acdfb1437c 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "IPAMHandle", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json index 687244d60f4..7b7deadec1a 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "IPPool", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json index fdcac0e63df..10b2801e710 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "VxNetPool", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json index 69d32f4b3a0..0fce12dc48e 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Kafka", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json index 6945bb2259f..affb5957a64 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaBridge", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json index 2a13d9af825..8250aa44e1b 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaConnect", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json index 59b4032a863..9b9d8e475f0 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaConnector", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json index 19d89f21a7d..aa6a5f57f7c 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaMirrorMaker", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json index 274acf647c9..c9cd07e4b74 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaMirrorMaker2", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json index 2abe2e9d83d..a827082a9db 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaRebalance", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json index 2084f3fefca..fa56a554f3c 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaTopic", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json index 40e26f3628a..a2bc1b0c861 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KafkaUser", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json index 9f8214a01ba..674a411b332 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "StrimziPodSet", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json index 54a01796284..775ead57149 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Alertmanager", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json index b00b72c2088..b6907e4aeec 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "AlertmanagerConfig", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json index 484453d0c0b..01147f49783 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "PodMonitor", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json index 4215297f47f..b9e732f23c3 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Probe", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json index 630605aab7d..eeb9acf82f9 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Prometheus", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json index 92f22402ebc..f1827c49797 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "PrometheusRule", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json index f7afc132bbc..77330933ed7 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "ServiceMonitor", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json index 8a47a3620e1..b68ca5046ca 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "ThanosRuler", diff --git a/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json b/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json index c53ed483863..b81dba84b27 100644 --- a/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json +++ b/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json index d7cfba0fcc7..149698a6abc 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json index 73a77832b51..c9852f0566e 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json index 71dad7f173b..109322c1e0d 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json index dd0edf7f5b7..a05fd87f66e 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json index 634c6a5ced1..12004da5ee1 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "EDPComponent", diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json index d4da4c17786..3ec9b4f6bd6 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json index 2078fd3cf63..426ef6f0756 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json index 4cab6f98b65..7513c4f5e50 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json index ab94af44308..9f69849a0c3 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "QuickLink", diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json index be768efeb6e..1aaf1092fc9 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Template", diff --git a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json index 33e341c8d04..bfa3e346a77 100644 --- a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json +++ b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PubSubSubscriptionTemplate", diff --git a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json index 9f1f0d244fe..e97023c4cc6 100644 --- a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json +++ b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PubSubTopicTemplate", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json index 64bdd3fb7b5..1b26cfb1cb8 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Contour", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json index ae16f969329..aa0ca91be31 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ContourConfiguration", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json index f26f06dc139..ab35ff6a8e3 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ContourDeployment", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json index ce998d0cd0e..92587322313 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExtensionService", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json index 01eb678127f..342834a3396 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Gateway", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json index 13e59e752b5..a4fadad6d07 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "GatewayClass", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json index 92ac13eeb2c..4f46afc4015 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPProxy", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json index d197ca9bdad..20134a9948d 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPRoute", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json index b610dbc7b9e..84c9a135376 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TCPRoute", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json index d045d432e35..cd3ad6c6a98 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TLSCertificateDelegation", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json index d3f5fc1a982..b63dd365247 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TLSRoute", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json index bea10b61a51..7c02678f36a 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "", + "secondaryColor": "#45E1FF", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "UDPRoute", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json index 8b5373d9a02..11907fa0ed2 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdvancedCronJob", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json index 1e2010eaf0d..ea86b94692b 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Alert", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json index 0c8cc5db435..0e6e0424386 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json index 142f4d87a33..8996806a905 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json index 90b7af7a9a3..faa59336419 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AnalyticDeployment", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json index ef2485a9029..18ade30da0e 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AuthService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json index c6f0307b10c..17a66e475b6 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "BroadcastJob", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json index aca3412aa38..d8a8c7fb882 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CloneSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json index 9212630b072..00f4d2f9dba 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ConsulResolver", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json index bb429145a01..47e9701e80f 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ContainerRecreateRequest", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json index b19488c4467..c76e0d20e15 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DaemonSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json index 97bedef7907..af4c95efb9d 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DevPortal", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json index 873f9e76061..da1f282e414 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HelmRelease", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json index 0bd6fbca158..15abcdd4ce9 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Host", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json index 48e0260aaab..46086ab119b 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ImagePullJob", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json index dd72ff80acc..41728da9488 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesEndpointResolver", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json index ab1f3779f87..6b03d8d7c44 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesServiceResolver", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json index a64871872a6..43d98a72820 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Listener", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json index a24c9378112..e45800e8f2b 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LogService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json index 09023dd7eb1..b673a9b7868 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Mapping", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json index cb9a5554790..16827fc6bf4 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MetricGroup", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json index 06c44dd9d0f..3dac467534b 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Module", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json index fe1da630b64..e62eeffc9fa 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NodeImage", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json index 4a6918f9b85..3ac3fdbf2f1 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json index bf18606089c..024ebb68a04 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PodUnavailableBudget", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json index 67dba17f38c..d8b2a3d3cde 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json index f3063ee4d73..6e02abc23bf 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json index ea78fc7f1fc..5f03bdc0fc9 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PrometheusK8sCluster", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json index fe5539b4ccc..30991433468 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json index f21de716e83..a0a4d8a64a7 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RateLimitService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json index 3313d56fa16..37a7fd7b9fb 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ResourceDistribution", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json index adb620d4fbd..4cade3d87c7 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json index 308e293b558..f154e33094d 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "SidecarSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json index ca578f04547..39ac2ccb4dd 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "StatefulSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json index a99d35b0932..b7fde7793da 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TCPMapping", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json index d9f85e7e8af..5159c5b7a47 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TLSContext", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json index 2b445c4debc..753c3b94838 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json index a8e630686e3..36b14c0ce41 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TracingService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json index 8b690c55f0b..b2e416f86e9 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "UnitedDeployment", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json index 9abd01bacb9..c4d4d8240eb 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "WorkloadSpread", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json index b965388016d..e4162f65102 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ClusterInstance", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json index ad013de36ff..9b61aee6565 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ClusterTemplate", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json index 5f93593aa11..e4afe225971 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Instance", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json index 1e034766e41..95c86b1096a 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Template", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json index fea8cf7e9e2..025c16af86b 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "User", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json index 87768c5e5ea..89051dc39bd 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Workspace", diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json index 0b3fd529603..6eb0fb67e63 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json index e545b418f0c..4c069067a3f 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json index 15546e9efc2..76281f9b1b0 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json index c1eabee870a..f9288d76626 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json index e31c2a63ddc..5d202d241f2 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json index a71239b358f..a5f12fd26ee 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json index 5340e06d321..561d565a0bd 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json index ffb6027883a..f70b4518cc9 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json new file mode 100644 index 00000000000..99a7e3f0451 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Autoscaler", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseAutoscaler", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseAutoscaler provides an interface for the Kubernetes Horizontal Pod Autoscaler to interact with the Couchbase cluster and provide autoscaling. This resource is not defined by the end user, and is managed by the Operator.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CouchbaseAutoscalerSpec allows control over an autoscaling group.\",\n \"properties\": {\n \"servers\": {\n \"description\": \"Servers specifies the server group that this autoscaler belongs to.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"size\": {\n \"description\": \"Size allows the server group to be dynamically scaled.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"servers\",\n \"size\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Autoscaler\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json new file mode 100644 index 00000000000..6cf32b0be91 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Backup", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseBackup", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseBackup allows automatic backup of all data from a Couchbase cluster into persistent storage.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CouchbaseBackupSpec is allows the specification of how a Couchbase backup is configured, including when backups are performed, how long they are retained for, and where they are backed up to.\",\n \"properties\": {\n \"autoScaling\": {\n \"description\": \"AutoScaling allows the volume size to be dynamically increased. When specified, the backup volume will start with an initial size as defined by `spec.size`, and increase as required.\",\n \"properties\": {\n \"incrementPercent\": {\n \"default\": 20,\n \"description\": \"IncrementPercent controls how much the volume is increased each time the threshold is exceeded, upto a maximum as defined by the limit. This field defaults to 20 if not specified.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"limit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Limit imposes a hard limit on the size we can autoscale to. When not specified no bounds are imposed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"thresholdPercent\": {\n \"default\": 20,\n \"description\": \"ThresholdPercent determines the point at which a volume is autoscaled. This represents the percentage of free space remaining on the volume, when less than this threshold, it will trigger a volume expansion. For example, if the volume is 100Gi, and the threshold 20%, then a resize will be triggered when the used capacity exceeds 80Gi, and free space is less than 20Gi. This field defaults to 20 if not specified.\",\n \"maximum\": 99,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"backoffLimit\": {\n \"default\": 2,\n \"description\": \"Number of times a backup job should try to execute. Once it hits the BackoffLimit it will not run until the next scheduled job.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"backupRetention\": {\n \"default\": \"720h\",\n \"description\": \"Number of hours to hold backups for, everything older will be deleted. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"data\": {\n \"description\": \"Data allows control over what key-value/document data is included in the backup. By default, all data is included. Modifications to this field will only take effect on the next full backup.\",\n \"properties\": {\n \"exclude\": {\n \"description\": \"Exclude defines the buckets, scopes or collections that are excluded from the backup. When this field is set, it implies that by default everything will be backed up, and data items can be explicitly excluded. You may define an exclusion as a bucket -- `my-bucket`, a scope -- `my-bucket.my-scope`, or a collection -- `my-bucket.my-scope.my-collection`. Buckets may contain periods, and therefore must be escaped -- `my\\\\.bucket.my-scope`, as period is the separator used to delimit scopes and collections. Excluded data cannot overlap e.g. specifying `my-bucket` and `my-bucket.my-scope` is illegal. This field cannot be used at the same time as included items.\",\n \"items\": {\n \"description\": \"BucketScopeOrCollectionNameWithDefaults is the name of a fully qualifed bucket, scope or collection. The _default scope and collection are valid for this type. As these names are period separated, and buckets can contain periods, the latter need to be escaped. This specification is based on cbbackupmgr.\",\n \"pattern\": \"^(?:[a-zA-Z0-9\\\\-_%]|\\\\\\\\.){1,100}(\\\\._default(\\\\._default)?|\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29}(\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29})?)?$\",\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"include\": {\n \"description\": \"Include defines the buckets, scopes or collections that are included in the backup. When this field is set, it implies that by default nothing will be backed up, and data items must be explicitly included. You may define an inclusion as a bucket -- `my-bucket`, a scope -- `my-bucket.my-scope`, or a collection -- `my-bucket.my-scope.my-collection`. Buckets may contain periods, and therefore must be escaped -- `my\\\\.bucket.my-scope`, as period is the separator used to delimit scopes and collections. Included data cannot overlap e.g. specifying `my-bucket` and `my-bucket.my-scope` is illegal. This field cannot be used at the same time as excluded items.\",\n \"items\": {\n \"description\": \"BucketScopeOrCollectionNameWithDefaults is the name of a fully qualifed bucket, scope or collection. The _default scope and collection are valid for this type. As these names are period separated, and buckets can contain periods, the latter need to be escaped. This specification is based on cbbackupmgr.\",\n \"pattern\": \"^(?:[a-zA-Z0-9\\\\-_%]|\\\\\\\\.){1,100}(\\\\._default(\\\\._default)?|\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29}(\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29})?)?$\",\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n }\n },\n \"type\": \"object\"\n },\n \"defaultRecoveryMethod\": {\n \"default\": \"none\",\n \"description\": \"DefaultRecoveryMethod specifies how cbbackupmgr should recover from broken backup/restore attempts.\",\n \"enum\": [\n \"none\",\n \"resume\",\n \"purge\"\n ],\n \"type\": \"string\"\n },\n \"ephemeralVolume\": {\n \"default\": false,\n \"description\": \"EphemeralVolume sets backup to use an ephemeral volume instead of a persistent volume. This is used when backing up to a remote cloud provider, where a persistent volume is not needed.\",\n \"type\": \"boolean\"\n },\n \"failedJobsHistoryLimit\": {\n \"default\": 3,\n \"description\": \"Amount of failed jobs to keep.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"full\": {\n \"description\": \"Full is the schedule on when to take full backups. Used in Full/Incremental and FullOnly backup strategies.\",\n \"properties\": {\n \"schedule\": {\n \"description\": \"Schedule takes a cron schedule in string format.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"schedule\"\n ],\n \"type\": \"object\"\n },\n \"incremental\": {\n \"description\": \"Incremental is the schedule on when to take incremental backups. Used in Full/Incremental backup strategies.\",\n \"properties\": {\n \"schedule\": {\n \"description\": \"Schedule takes a cron schedule in string format.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"schedule\"\n ],\n \"type\": \"object\"\n },\n \"logRetention\": {\n \"default\": \"168h\",\n \"description\": \"Number of hours to hold script logs for, everything older will be deleted. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"objectStore\": {\n \"description\": \"ObjectStore allows for backing up to a remote cloud storage.\",\n \"properties\": {\n \"endpoint\": {\n \"description\": \"Endpoint contains the configuration for connecting to a custom Azure/S3/GCP compliant object store. If set will override `CouchbaseCluster.spec.backup.objectEndpoint` See https://docs.couchbase.com/server/current/backup-restore/cbbackupmgr-cloud.html#compatible-object-stores\",\n \"properties\": {\n \"secret\": {\n \"description\": \"The name of the secret, in this namespace, that contains the CA certificate for verification of a TLS endpoint The secret must have the key with the name \\\"tls.crt\\\"\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"The host/address of the custom object endpoint.\",\n \"type\": \"string\"\n },\n \"useVirtualPath\": {\n \"description\": \"UseVirtualPath will force the AWS SDK to use the new virtual style paths which are often required by S3 compatible object stores.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"ObjStoreSecret must contain two fields, access-key-id, secret-access-key and optionally either region or refresh-token. These correspond to the fields used by cbbackupmgr https://docs.couchbase.com/server/current/backup-restore/cbbackupmgr-backup.html#optional-2\",\n \"type\": \"string\"\n },\n \"uri\": {\n \"description\": \"URI is a reference to a remote object store. This is the prefix of the object store and the bucket name. i.e s3://bucket, az://bucket or gs://bucket.\",\n \"pattern\": \"^(az|s3|gs)://.{3,}$\",\n \"type\": \"string\"\n },\n \"useIAM\": {\n \"description\": \"Whether to allow the backup SDK to attempt to authenticate using the instance metadata api. If set, will override `CouchbaseCluster.spec.backup.useIAM`.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"s3bucket\": {\n \"description\": \"DEPRECATED - by spec.objectStore.uri Name of S3 bucket to backup to. If non-empty this overrides local backup.\",\n \"pattern\": \"^s3://[a-z0-9-\\\\.\\\\/]{3,63}$\",\n \"type\": \"string\"\n },\n \"services\": {\n \"default\": {},\n \"description\": \"Services allows control over what services are included in the backup. By default, all service data and metadata are included. Modifications to this field will only take effect on the next full backup.\",\n \"properties\": {\n \"analytics\": {\n \"default\": true,\n \"description\": \"Analytics enables the backup of analytics data. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"bucketConfig\": {\n \"default\": true,\n \"description\": \"BucketConfig enables the backup of bucket configuration. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"bucketQuery\": {\n \"default\": true,\n \"description\": \"BucketQuery enables the backup of query metadata for all buckets. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"clusterAnalytics\": {\n \"default\": true,\n \"description\": \"ClusterAnalytics enables the backup of cluster-wide analytics data, for example synonyms. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"clusterQuery\": {\n \"default\": true,\n \"description\": \"ClusterQuery enables the backup of cluster level query metadata. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"data\": {\n \"default\": true,\n \"description\": \"Data enables the backup of key-value data/documents for all buckets. This can be further refined with the couchbasebackups.spec.data configuration. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"eventing\": {\n \"default\": true,\n \"description\": \"Eventing enables the backup of eventing service metadata. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"ftsAliases\": {\n \"default\": true,\n \"description\": \"FTSAliases enables the backup of full-text search alias definitions. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"ftsIndexes\": {\n \"default\": true,\n \"description\": \"FTSIndexes enables the backup of full-text search index definitions for all buckets. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"gsIndexes\": {\n \"default\": true,\n \"description\": \"GSIndexes enables the backup of global secondary index definitions for all buckets. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"views\": {\n \"default\": true,\n \"description\": \"Views enables the backup of view definitions for all buckets. This field defaults to `true`.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"20Gi\",\n \"description\": \"Size allows the specification of a backup persistent volume, when using volume based backup. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"storageClassName\": {\n \"description\": \"Name of StorageClass to use.\",\n \"type\": \"string\"\n },\n \"strategy\": {\n \"default\": \"full_incremental\",\n \"description\": \"Strategy defines how to perform backups. `full_only` will only perform full backups, and you must define a schedule in the `spec.full` field. `full_incremental` will perform periodic full backups, and incremental backups in between. You must define full and incremental schedules in the `spec.full` and `spec.incremental` fields respectively. Care should be taken to ensure full and incremental schedules do not overlap, taking into account the backup time, as this will cause failures as the jobs attempt to mount the same backup volume. To cause a backup to occur immediately use `immediate_incremental` or `immediate_full` for incremental or full backups respectively. This field default to `full_incremental`. Info: https://docs.couchbase.com/server/current/backup-restore/cbbackupmgr-strategies.html\",\n \"enum\": [\n \"full_incremental\",\n \"full_only\",\n \"immediate_incremental\",\n \"immediate_full\"\n ],\n \"type\": \"string\"\n },\n \"successfulJobsHistoryLimit\": {\n \"default\": 3,\n \"description\": \"Amount of successful jobs to keep.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"threads\": {\n \"default\": 1,\n \"description\": \"How many threads to use during the backup. This field defaults to 1.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ttlSecondsAfterFinished\": {\n \"description\": \"Amount of time to elapse before a completed job is deleted.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Backup\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json new file mode 100644 index 00000000000..7a545675199 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Backup Restore", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseBackupRestore", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseBackupRestore allows the restoration of all Couchbase cluster data from a CouchbaseBackup resource.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CouchbaseBackupRestoreSpec allows the specification of data restoration to be configured. This includes the backup and repository to restore data from, and the time range of data to be restored.\",\n \"properties\": {\n \"backoffLimit\": {\n \"default\": 2,\n \"description\": \"Number of times the restore job should try to execute.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"backup\": {\n \"description\": \"The backup resource name associated with this restore, or the backup PVC name to restore from.\",\n \"type\": \"string\"\n },\n \"buckets\": {\n \"description\": \"DEPRECATED - by spec.data. Specific buckets can be explicitly included or excluded in the restore, as well as bucket mappings. This field is now ignored.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"data\": {\n \"description\": \"Data allows control over what key-value/document data is included in the restore. By default, all data is included.\",\n \"properties\": {\n \"exclude\": {\n \"description\": \"Exclude defines the buckets, scopes or collections that are excluded from the backup. When this field is set, it implies that by default everything will be backed up, and data items can be explicitly excluded. You may define an exclusion as a bucket -- `my-bucket`, a scope -- `my-bucket.my-scope`, or a collection -- `my-bucket.my-scope.my-collection`. Buckets may contain periods, and therefore must be escaped -- `my\\\\.bucket.my-scope`, as period is the separator used to delimit scopes and collections. Excluded data cannot overlap e.g. specifying `my-bucket` and `my-bucket.my-scope` is illegal. This field cannot be used at the same time as included items.\",\n \"items\": {\n \"description\": \"BucketScopeOrCollectionNameWithDefaults is the name of a fully qualifed bucket, scope or collection. The _default scope and collection are valid for this type. As these names are period separated, and buckets can contain periods, the latter need to be escaped. This specification is based on cbbackupmgr.\",\n \"pattern\": \"^(?:[a-zA-Z0-9\\\\-_%]|\\\\\\\\.){1,100}(\\\\._default(\\\\._default)?|\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29}(\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29})?)?$\",\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"filterKeys\": {\n \"description\": \"FilterKeys only restores documents whose names match the provided regular expression.\",\n \"type\": \"string\"\n },\n \"filterValues\": {\n \"description\": \"FilterValues only restores documents whose values match the provided regular expression.\",\n \"type\": \"string\"\n },\n \"include\": {\n \"description\": \"Include defines the buckets, scopes or collections that are included in the restore. When this field is set, it implies that by default nothing will be restored, and data items must be explicitly included. You may define an inclusion as a bucket -- `my-bucket`, a scope -- `my-bucket.my-scope`, or a collection -- `my-bucket.my-scope.my-collection`. Buckets may contain periods, and therefore must be escaped -- `my\\\\.bucket.my-scope`, as period is the separator used to delimit scopes and collections. Included data cannot overlap e.g. specifying `my-bucket` and `my-bucket.my-scope` is illegal. This field cannot be used at the same time as excluded items.\",\n \"items\": {\n \"description\": \"BucketScopeOrCollectionNameWithDefaults is the name of a fully qualifed bucket, scope or collection. The _default scope and collection are valid for this type. As these names are period separated, and buckets can contain periods, the latter need to be escaped. This specification is based on cbbackupmgr.\",\n \"pattern\": \"^(?:[a-zA-Z0-9\\\\-_%]|\\\\\\\\.){1,100}(\\\\._default(\\\\._default)?|\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29}(\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29})?)?$\",\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"map\": {\n \"description\": \"Map allows data items in the restore to be remapped to a different named container. Buckets can be remapped to other buckets e.g. \\\"source=target\\\", scopes and collections can be remapped to other scopes and collections within the same bucket only e.g. \\\"bucket.scope=bucket.other\\\" or \\\"bucket.scope.collection=bucket.scope.other\\\". Map sources may only be specified once, and may not overlap.\",\n \"items\": {\n \"description\": \"RestoreMapping allows data to be migrated on restore.\",\n \"properties\": {\n \"source\": {\n \"description\": \"Source defines the data source of the mapping, this may be either a bucket, scope or collection.\",\n \"pattern\": \"^(?:[a-zA-Z0-9\\\\-_%]|\\\\\\\\.){1,100}(\\\\._default(\\\\._default)?|\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29}(\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29})?)?$\",\n \"type\": \"string\"\n },\n \"target\": {\n \"description\": \"Target defines the data target of the mapping, this may be either a bucket, scope or collection, and must refer to the same type as the restore source.\",\n \"pattern\": \"^(?:[a-zA-Z0-9\\\\-_%]|\\\\\\\\.){1,100}(\\\\._default(\\\\._default)?|\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29}(\\\\.[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,29})?)?$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"source\",\n \"target\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"source\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"end\": {\n \"description\": \"End denotes the last backup to restore from. Omitting this field will only restore the backup referenced by start. This may be specified as an integer index (starting from 1), a string specifying a short date DD-MM-YYYY, the backup name, or one of either `start` or `oldest` keywords.\",\n \"properties\": {\n \"int\": {\n \"description\": \"Int references a relative backup by index.\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"str\": {\n \"description\": \"Str references an absolute backup by name.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"forceUpdates\": {\n \"description\": \"Forces data in the Couchbase cluster to be overwritten even if the data in the cluster is newer than the restore\",\n \"type\": \"boolean\"\n },\n \"logRetention\": {\n \"default\": \"168h\",\n \"description\": \"Number of hours to hold restore script logs for, everything older will be deleted. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"objectStore\": {\n \"description\": \"The remote destination for backup.\",\n \"properties\": {\n \"endpoint\": {\n \"description\": \"Endpoint contains the configuration for connecting to a custom Azure/S3/GCP compliant object store. If set will override `CouchbaseCluster.spec.backup.objectEndpoint` See https://docs.couchbase.com/server/current/backup-restore/cbbackupmgr-cloud.html#compatible-object-stores\",\n \"properties\": {\n \"secret\": {\n \"description\": \"The name of the secret, in this namespace, that contains the CA certificate for verification of a TLS endpoint The secret must have the key with the name \\\"tls.crt\\\"\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"The host/address of the custom object endpoint.\",\n \"type\": \"string\"\n },\n \"useVirtualPath\": {\n \"description\": \"UseVirtualPath will force the AWS SDK to use the new virtual style paths which are often required by S3 compatible object stores.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"ObjStoreSecret must contain two fields, access-key-id, secret-access-key and optionally either region or refresh-token. These correspond to the fields used by cbbackupmgr https://docs.couchbase.com/server/current/backup-restore/cbbackupmgr-backup.html#optional-2\",\n \"type\": \"string\"\n },\n \"uri\": {\n \"description\": \"URI is a reference to a remote object store. This is the prefix of the object store and the bucket name. i.e s3://bucket, az://bucket or gs://bucket.\",\n \"pattern\": \"^(az|s3|gs)://.{3,}$\",\n \"type\": \"string\"\n },\n \"useIAM\": {\n \"description\": \"Whether to allow the backup SDK to attempt to authenticate using the instance metadata api. If set, will override `CouchbaseCluster.spec.backup.useIAM`.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"repo\": {\n \"description\": \"Repo is the backup folder to restore from. If no repository is specified, the backup container will choose the latest.\",\n \"type\": \"string\"\n },\n \"s3bucket\": {\n \"description\": \"DEPRECATED - by spec.objectStore.uri Name of S3 bucket to restore from. If non-empty this overrides local backup.\",\n \"pattern\": \"^s3://[a-z0-9-\\\\.\\\\/]{3,63}$\",\n \"type\": \"string\"\n },\n \"services\": {\n \"default\": {},\n \"description\": \"This list accepts a certain set of parameters that will disable that data and prevent it being restored.\",\n \"properties\": {\n \"analytics\": {\n \"default\": true,\n \"description\": \"Analytics restores analytics datasets from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n },\n \"bucketConfig\": {\n \"description\": \"BucketConfig restores all bucket configuration settings. If you are restoring to cluster with managed buckets, then this option may conflict with existing bucket settings, and the results are undefined, so avoid use. This option is intended for use with unmanaged buckets. Note that bucket durability settings are not restored in versions less than and equal to 1.1.0, and will need to be manually applied. This field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"bucketQuery\": {\n \"default\": true,\n \"description\": \"BucketQuery enables the backup of query metadata for all buckets. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"clusterAnalytics\": {\n \"default\": true,\n \"description\": \"ClusterAnalytics enables the backup of cluster-wide analytics data, for example synonyms. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"clusterQuery\": {\n \"default\": true,\n \"description\": \"ClusterQuery enables the backup of cluster level query metadata. This field defaults to `true`.\",\n \"type\": \"boolean\"\n },\n \"data\": {\n \"default\": true,\n \"description\": \"Data restores document data from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n },\n \"eventing\": {\n \"default\": true,\n \"description\": \"Eventing restores eventing functions from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ftAlias\": {\n \"default\": true,\n \"description\": \"FTAlias restores full-text search aliases from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ftIndex\": {\n \"default\": true,\n \"description\": \"FTIndex restores full-text search indexes from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n },\n \"gsiIndex\": {\n \"default\": true,\n \"description\": \"GSIIndex restores document indexes from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n },\n \"views\": {\n \"default\": true,\n \"description\": \"Views restores views from the backup. This field defaults to true.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"stagingVolume\": {\n \"default\": {\n \"size\": \"20Gi\"\n },\n \"description\": \"StagingVolume contains configuration related to the ephemeral volume used as staging when restoring from a cloud backup.\",\n \"properties\": {\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"20Gi\",\n \"description\": \"Size allows the specification of a staging volume. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes The ephemeral volume will only be used when restoring from a cloud provider, if the backup job was created using ephemeral storage. Otherwise the restore job will share a staging volume with the backup job.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"storageClassName\": {\n \"description\": \"Name of StorageClass to use.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"start\": {\n \"description\": \"Start denotes the first backup to restore from. This may be specified as an integer index (starting from 1), a string specifying a short date DD-MM-YYYY, the backup name, or one of either `start` or `oldest` keywords.\",\n \"properties\": {\n \"int\": {\n \"description\": \"Int references a relative backup by index.\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"str\": {\n \"description\": \"Str references an absolute backup by name.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"threads\": {\n \"default\": 1,\n \"description\": \"How many threads to use during the restore.\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"ttlSecondsAfterFinished\": {\n \"description\": \"Number of seconds to elapse before a completed job is deleted.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Backup Restore\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json new file mode 100644 index 00000000000..f319f272827 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Bucket", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseBucket", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"The CouchbaseBucket resource defines a set of documents in Couchbase server. A Couchbase client connects to and operates on a bucket, which provides independent management of a set documents and a security boundary for role based access control. A CouchbaseBucket provides replication and persistence for documents contained by it.\",\n \"properties\": {\n \"spec\": {\n \"default\": {},\n \"description\": \"CouchbaseBucketSpec is the specification for a Couchbase bucket resource, and allows the bucket to be customized.\",\n \"properties\": {\n \"compressionMode\": {\n \"default\": \"passive\",\n \"description\": \"CompressionMode defines how Couchbase server handles document compression. When off, documents are stored in memory, and transferred to the client uncompressed. When passive, documents are stored compressed in memory, and transferred to the client compressed when requested. When active, documents are stored compresses in memory and when transferred to the client. This field must be \\\"off\\\", \\\"passive\\\" or \\\"active\\\", defaulting to \\\"passive\\\". Be aware \\\"off\\\" in YAML 1.2 is a boolean, so must be quoted as a string in configuration files.\",\n \"enum\": [\n \"off\",\n \"passive\",\n \"active\"\n ],\n \"type\": \"string\"\n },\n \"conflictResolution\": {\n \"default\": \"seqno\",\n \"description\": \"ConflictResolution defines how XDCR handles concurrent write conflicts. Sequence number based resolution selects the document with the highest sequence number as the most recent. Timestamp based resolution selects the document that was written to most recently as the most recent. This field must be \\\"seqno\\\" (sequence based), or \\\"lww\\\" (timestamp based), defaulting to \\\"seqno\\\".\",\n \"enum\": [\n \"seqno\",\n \"lww\"\n ],\n \"type\": \"string\"\n },\n \"enableFlush\": {\n \"description\": \"EnableFlush defines whether a client can delete all documents in a bucket. This field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"enableIndexReplica\": {\n \"description\": \"EnableIndexReplica defines whether indexes for this bucket are replicated. This field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"evictionPolicy\": {\n \"default\": \"valueOnly\",\n \"description\": \"EvictionPolicy controls how Couchbase handles memory exhaustion. Value only eviction flushes documents to disk but maintains document metadata in memory in order to improve query performance. Full eviction removes all data from memory after the document is flushed to disk. This field must be \\\"valueOnly\\\" or \\\"fullEviction\\\", defaulting to \\\"valueOnly\\\".\",\n \"enum\": [\n \"valueOnly\",\n \"fullEviction\"\n ],\n \"type\": \"string\"\n },\n \"ioPriority\": {\n \"default\": \"low\",\n \"description\": \"IOPriority controls how many threads a bucket has, per pod, to process reads and writes. This field must be \\\"low\\\" or \\\"high\\\", defaulting to \\\"low\\\". Modification of this field will cause a temporary service disruption as threads are restarted.\",\n \"enum\": [\n \"low\",\n \"high\"\n ],\n \"type\": \"string\"\n },\n \"maxTTL\": {\n \"description\": \"MaxTTL defines how long a document is permitted to exist for, without modification, until it is automatically deleted. This is a default and maximum time-to-live and may be set to a lower value by the client. If the client specifies a higher value, then it is truncated to the maximum durability. Documents are removed by Couchbase, after they have expired, when either accessed, the expiry pager is run, or the bucket is compacted. When set to 0, then documents are not expired by default. This field must be a duration in the range 0-2147483648s, defaulting to 0. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"memoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100Mi\",\n \"description\": \"MemoryQuota is a memory limit to the size of a bucket. When this limit is exceeded, documents will be evicted from memory to disk as defined by the eviction policy. The memory quota is defined per Couchbase pod running the data service. This field defaults to, and must be greater than or equal to 100Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumDurability\": {\n \"description\": \"MiniumumDurability defines how durable a document write is by default, and can be made more durable by the client. This feature enables ACID transactions. When none, Couchbase server will respond when the document is in memory, it will become eventually consistent across the cluster. When majority, Couchbase server will respond when the document is replicated to at least half of the pods running the data service in the cluster. When majorityAndPersistActive, Couchbase server will respond when the document is replicated to at least half of the pods running the data service in the cluster and the document has been persisted to disk on the document master pod. When persistToMajority, Couchbase server will respond when the document is replicated and persisted to disk on at least half of the pods running the data service in the cluster. This field must be either \\\"none\\\", \\\"majority\\\", \\\"majorityAndPersistActive\\\" or \\\"persistToMajority\\\", defaulting to \\\"none\\\".\",\n \"enum\": [\n \"none\",\n \"majority\",\n \"majorityAndPersistActive\",\n \"persistToMajority\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the bucket within Couchbase server. By default the Operator will use the `metadata.name` field to define the bucket name. The `metadata.name` field only supports a subset of the supported character set. When specified, this field overrides `metadata.name`. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n },\n \"replicas\": {\n \"default\": 1,\n \"description\": \"Replicas defines how many copies of documents Couchbase server maintains. This directly affects how fault tolerant a Couchbase cluster is. With a single replica, the cluster can tolerate one data pod going down and still service requests without data loss. The number of replicas also affect memory use. With a single replica, the effective memory quota for documents is halved, with two replicas it is one third. The number of replicas must be between 0 and 3, defaulting to 1.\",\n \"maximum\": 3,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"scopes\": {\n \"description\": \"Scopes defines whether the Operator manages scopes for the bucket or not, and the set of scopes defined for the bucket.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed defines whether scopes are managed for this bucket. This field is `false` by default, and the Operator will take no actions that will affect scopes and collections in this bucket. The default scope and collection will be present. When set to `true`, the Operator will manage user defined scopes, and optionally, their collections as defined by the `CouchbaseScope`, `CouchbaseScopeGroup`, `CouchbaseCollection` and `CouchbaseCollectionGroup` resource documentation. If this field is set to `false` while the already managed, then the Operator will leave whatever configuration is already present.\",\n \"type\": \"boolean\"\n },\n \"resources\": {\n \"description\": \"Resources is an explicit list of named resources that will be considered for inclusion in this bucket. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseScope\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A scope can only reference `CouchbaseScope` and `CouchbaseScopeGroup` resource kinds. This field defaults to `CouchbaseScope` if not specified.\",\n \"enum\": [\n \"CouchbaseScope\",\n \"CouchbaseScopeGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced. Legal scope names have a maximum length of 251 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"_-%\\\".\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this bucket. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageBackend\": {\n \"description\": \"StorageBackend to be assigned to and used by the bucket. Only valid for Couchbase Server 7.0.0 onward. Two different backend storage mechanisms can be used - \\\"couchstore\\\" or \\\"magma\\\", defaulting to \\\"couchstore\\\". This cannot be edited after bucket creation. Note: \\\"magma\\\" is only valid for Couchbase Server 7.1.0 onward.\",\n \"enum\": [\n \"couchstore\",\n \"magma\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Couchbase Bucket\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json new file mode 100644 index 00000000000..46c94913bab --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Cluster", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseCluster", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"The CouchbaseCluster resource represents a Couchbase cluster. It allows configuration of cluster topology, networking, storage and security options.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ClusterSpec is the specification for a CouchbaseCluster resources, and allows the cluster to be customized.\",\n \"properties\": {\n \"antiAffinity\": {\n \"description\": \"AntiAffinity forces the Operator to schedule different Couchbase server pods on different Kubernetes nodes. Anti-affinity reduces the likelihood of unrecoverable failure in the event of a node issue. Use of anti-affinity is highly recommended for production clusters.\",\n \"type\": \"boolean\"\n },\n \"autoResourceAllocation\": {\n \"description\": \"AutoResourceAllocation populates pod resource requests based on the services running on that pod. When enabled, this feature will calculate the memory request as the total of service allocations defined in `spec.cluster`, plus an overhead defined by `spec.autoResourceAllocation.overheadPercent`.Changing individual allocations for a service will cause a cluster upgrade as allocations are modified in the underlying pods. This field also allows default pod CPU requests and limits to be applied. All resource allocations can be overridden by explicitly configuring them in the `spec.servers.resources` field.\",\n \"properties\": {\n \"cpuLimits\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"4\",\n \"description\": \"CPULimits automatically populates the CPU limits across all Couchbase server pods. This field defaults to \\\"4\\\" CPUs. Explicitly specifying the CPU limit for a particular server class will override this value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"cpuRequests\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"2\",\n \"description\": \"CPURequests automatically populates the CPU requests across all Couchbase server pods. The default value of \\\"2\\\", is the minimum recommended number of CPUs required to run Couchbase Server. Explicitly specifying the CPU request for a particular server class will override this value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"enabled\": {\n \"description\": \"Enabled defines whether auto-resource allocation is enabled.\",\n \"type\": \"boolean\"\n },\n \"overheadPercent\": {\n \"default\": 25,\n \"description\": \"OverheadPercent defines the amount of memory above that required for individual services on a pod. For Couchbase Server this should be approximately 25%.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"autoscaleStabilizationPeriod\": {\n \"description\": \"AutoscaleStabilizationPeriod defines how long after a rebalance the corresponding HorizontalPodAutoscaler should remain in maintenance mode. During maintenance mode all autoscaling is disabled since every HorizontalPodAutoscaler associated with the cluster becomes inactive. Since certain metrics can be unpredictable when Couchbase is rebalancing or upgrading, setting a stabilization period helps to prevent scaling recommendations from the HorizontalPodAutoscaler for a provided period of time. \\n Values must be a valid Kubernetes duration of 0s or higher: https://golang.org/pkg/time/#ParseDuration A value of 0, puts the cluster in maintenance mode during rebalance but immediately exits this mode once the rebalance has completed. When undefined, the HPA is never put into maintenance mode during rebalance.\",\n \"type\": \"string\"\n },\n \"backup\": {\n \"description\": \"Backup defines whether the Operator should manage automated backups, and how to lookup backup resources.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations defines additional annotations to appear on the backup/restore pods.\",\n \"type\": \"object\"\n },\n \"image\": {\n \"default\": \"couchbase/operator-backup:1.3.1\",\n \"description\": \"The Backup Image to run on backup pods.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets allow you to use an image from private repositories and non-dockerhub ones.\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels defines additional labels to appear on the backup/restore pods.\",\n \"type\": \"object\"\n },\n \"managed\": {\n \"description\": \"Managed defines whether backups are managed by us or the clients.\",\n \"type\": \"boolean\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector defines which nodes to constrain the pods that run any backup and restore operations to.\",\n \"type\": \"object\"\n },\n \"objectEndpoint\": {\n \"description\": \"Deprecated: by CouchbaseBackup.spec.objectStore.Endpoint ObjectEndpoint contains the configuration for connecting to a custom S3 compliant object store.\",\n \"properties\": {\n \"secret\": {\n \"description\": \"The name of the secret, in this namespace, that contains the CA certificate for verification of a TLS endpoint The secret must have the key with the name \\\"tls.crt\\\"\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"The host/address of the custom object endpoint.\",\n \"type\": \"string\"\n },\n \"useVirtualPath\": {\n \"description\": \"UseVirtualPath will force the AWS SDK to use the new virtual style paths which are often required by S3 compatible object stores.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the backup and restore containers. Will be populated by defaults if not specified.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"s3Secret\": {\n \"description\": \"Deprecated: by CouchbaseBackup.spec.objectStore.secret S3Secret contains the key region and optionally access-key-id and secret-access-key for operating backups in S3. This field must be popluated when the `spec.s3bucket` field is specified for a backup or restore resource.\",\n \"type\": \"string\"\n },\n \"selector\": {\n \"description\": \"Selector allows CouchbaseBackup and CouchbaseBackupRestore resources to be filtered based on labels.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"default\": \"couchbase-backup\",\n \"description\": \"The Service Account to run backup (and restore) pods under. Without this backup pods will not be able to update status.\",\n \"type\": \"string\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations specifies all backup and restore pod tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useIAMRole\": {\n \"description\": \"Deprecated: by CouchbaseBackup.spec.objectStore.useIAM UseIAMRole enables backup to fetch EC2 instance metadata. This allows the AWS SDK to use the EC2's IAM Role for S3 access. UseIAMRole will ignore credentials in s3Secret.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"image\"\n ],\n \"type\": \"object\"\n },\n \"buckets\": {\n \"description\": \"Buckets defines whether the Operator should manage buckets, and how to lookup bucket resources.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed defines whether buckets are managed by the Operator (true), or user managed (false). When Operator managed, all buckets must be defined with either CouchbaseBucket, CouchbaseEphemeralBucket or CouchbaseMemcachedBucket resources. Manual addition of buckets will be reverted by the Operator. When user managed, the Operator will not interrogate buckets at all. This field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"selector\": {\n \"description\": \"Selector is a label selector used to list buckets in the namespace that are managed by the Operator.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"synchronize\": {\n \"description\": \"Synchronize allows unmanaged buckets, scopes, and collections to be synchronized as Kubernetes resources by the Operator. This feature is intended for development only and should not be used for production workloads. The synchronization workflow starts with `spec.buckets.managed` being set to false, the user can manually create buckets, scopes, and collections using the Couchbase UI, or other tooling. When you wish to commit to Kubernetes resources, you must specify a unique label selector in the `spec.buckets.selector` field, and this field is set to true. The Operator will create Kubernetes resources for you, and upon completion set the cluster's `Synchronized` status condition. You may then safely set `spec.buckets.managed` to true and the Operator will manage these resources as per usual. To update an already managed data topology, you must first set it to unmanaged, make any changes, and delete any old resources, then follow the standard synchronization workflow. The Operator can not, and will not, ever delete, or make modifications to resource specifications that are intended to be user managed, or managed by a life cycle management tool. These actions must be instigated by an end user. For a more complete experience, refer to the documentation for the `cao save` and `cao restore` CLI commands.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cluster\": {\n \"default\": {},\n \"description\": \"ClusterSettings define Couchbase cluster-wide settings such as memory allocation, failover characteristics and index settings.\",\n \"properties\": {\n \"analyticsServiceMemoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"1Gi\",\n \"description\": \"AnalyticsServiceMemQuota is the amount of memory that should be allocated to the analytics service. This value is per-pod, and only applicable to pods belonging to server classes running the analytics service. This field must be a quantity greater than or equal to 1Gi. This field defaults to 1Gi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"autoCompaction\": {\n \"default\": {},\n \"description\": \"AutoCompaction allows the configuration of auto-compaction, including on what conditions disk space is reclaimed and when it is allowed to run.\",\n \"properties\": {\n \"databaseFragmentationThreshold\": {\n \"default\": {},\n \"description\": \"DatabaseFragmentationThreshold defines triggers for when database compaction should start.\",\n \"properties\": {\n \"percent\": {\n \"default\": 30,\n \"description\": \"Percent is the percentage of disk fragmentation after which to decompaction will be triggered. This field must be in the range 2-100, defaulting to 30.\",\n \"maximum\": 100,\n \"minimum\": 2,\n \"type\": \"integer\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Size is the amount of disk framentation, that once exceeded, will trigger decompaction. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"parallelCompaction\": {\n \"description\": \"ParallelCompaction controls whether database and view compactions can happen in parallel.\",\n \"type\": \"boolean\"\n },\n \"timeWindow\": {\n \"description\": \"TimeWindow allows restriction of when compaction can occur.\",\n \"properties\": {\n \"abortCompactionOutsideWindow\": {\n \"default\": false,\n \"description\": \"AbortCompactionOutsideWindow stops compaction processes when the process moves outside the window.\",\n \"type\": \"boolean\"\n },\n \"end\": {\n \"description\": \"End is a wallclock time, in the form HH:MM, when a compaction should stop.\",\n \"pattern\": \"^(2[0-3]|[01]?[0-9]):([0-5]?[0-9])$\",\n \"type\": \"string\"\n },\n \"start\": {\n \"description\": \"Start is a wallclock time, in the form HH:MM, when a compaction is permitted to start.\",\n \"pattern\": \"^(2[0-3]|[01]?[0-9]):([0-5]?[0-9])$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tombstonePurgeInterval\": {\n \"default\": \"72h\",\n \"description\": \"TombstonePurgeInterval controls how long to wait before purging tombstones. This field must be in the range 1h-1440h, defaulting to 72h. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"viewFragmentationThreshold\": {\n \"default\": {},\n \"description\": \"ViewFragmentationThreshold defines triggers for when view compaction should start.\",\n \"properties\": {\n \"percent\": {\n \"default\": 30,\n \"description\": \"Percent is the percentage of disk fragmentation after which to decompaction will be triggered. This field must be in the range 2-100, defaulting to 30.\",\n \"maximum\": 100,\n \"minimum\": 2,\n \"type\": \"integer\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Size is the amount of disk framentation, that once exceeded, will trigger decompaction. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoFailoverMaxCount\": {\n \"default\": 1,\n \"description\": \"AutoFailoverMaxCount is the maximum number of automatic failovers Couchbase server will allow before not allowing any more. This field must be between 1-3 for server versions prior to 7.1.0 default is 1.\",\n \"format\": \"int64\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"autoFailoverOnDataDiskIssues\": {\n \"description\": \"AutoFailoverOnDataDiskIssues defines whether Couchbase server should failover a pod if a disk issue was detected.\",\n \"type\": \"boolean\"\n },\n \"autoFailoverOnDataDiskIssuesTimePeriod\": {\n \"default\": \"120s\",\n \"description\": \"AutoFailoverOnDataDiskIssuesTimePeriod defines how long to wait for transient errors before failing over a faulty disk. This field must be in the range 5-3600s, defaulting to 120s. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"autoFailoverServerGroup\": {\n \"description\": \"AutoFailoverServerGroup whether to enable failing over a server group. This field is ignored in server versions 7.1+ as it has been removed from the Couchbase API\",\n \"type\": \"boolean\"\n },\n \"autoFailoverTimeout\": {\n \"default\": \"120s\",\n \"description\": \"AutoFailoverTimeout defines how long Couchbase server will wait between a pod being witnessed as down, until when it will failover the pod. Couchbase server will only failover pods if it deems it safe to do so, and not result in data loss. This field must be in the range 5-3600s, defaulting to 120s. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"description\": \"ClusterName defines the name of the cluster, as displayed in the Couchbase UI. By default, the cluster name is that specified in the CouchbaseCluster resource's metadata.\",\n \"type\": \"string\"\n },\n \"data\": {\n \"description\": \"Data allows the data service to be configured.\",\n \"properties\": {\n \"auxIOThreads\": {\n \"description\": \"AuxIOThreads allows the number of threads used by the data service, per pod, to be altered. This indicates the number of threads that are to be used in the AuxIO thread pool to run auxiliary I/O tasks. This value must be between 1 and 64 threads and is only supported on CB versions 7.1.0+. and should only be increased where there are sufficient CPU resources allocated for their use. If not specified, this defaults to the default value set by Couchbase Server.\",\n \"maximum\": 64,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"nonIOThreads\": {\n \"description\": \"NonIOThreads allows the number of threads used by the data service, per pod, to be altered. This indicates the number of threads that are to be used in the NonIO thread pool to run in memory tasks. This value must be between 1 and 64 threads and is only supported on CB versions 7.1.0+. and should only be increased where there are sufficient CPU resources allocated for their use. If not specified, this defaults to the default value set by Couchbase Server.\",\n \"maximum\": 64,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"readerThreads\": {\n \"description\": \"ReaderThreads allows the number of threads used by the data service, per pod, to be altered. This value must be between 4 and 64 threads for CB versions below 7.1.0 and, or 1 and 64 for CB versions 7.1.0+. and should only be increased where there are sufficient CPU resources allocated for their use. If not specified, this defaults to the default value set by Couchbase Server.\",\n \"maximum\": 64,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"writerThreads\": {\n \"description\": \"WriterThreads allows the number of threads used by the data service, per pod, to be altered. This setting is especially relevant when using \\\"durable writes\\\", increasing this field will have a large impact on performance. This value must be between 4 and 64 threads for CB versions below 7.1.0 and, // or 1 and 64 for CB versions 7.1.0+. and should only be increased where there are sufficient CPU resources allocated for their use. If not specified, this defaults to the default value set by Couchbase Server.\",\n \"maximum\": 64,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"dataServiceMemoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"DataServiceMemQuota is the amount of memory that should be allocated to the data service. This value is per-pod, and only applicable to pods belonging to server classes running the data service. This field must be a quantity greater than or equal to 256Mi. This field defaults to 256Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"eventingServiceMemoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"EventingServiceMemQuota is the amount of memory that should be allocated to the eventing service. This value is per-pod, and only applicable to pods belonging to server classes running the eventing service. This field must be a quantity greater than or equal to 256Mi. This field defaults to 256Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"indexServiceMemoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"IndexServiceMemQuota is the amount of memory that should be allocated to the index service. This value is per-pod, and only applicable to pods belonging to server classes running the index service. This field must be a quantity greater than or equal to 256Mi. This field defaults to 256Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"indexStorageSetting\": {\n \"default\": \"memory_optimized\",\n \"description\": \"DEPRECATED - by indexer. The index storage mode to use for secondary indexing. This field must be one of \\\"memory_optimized\\\" or \\\"plasma\\\", defaulting to \\\"memory_optimized\\\". This field is immutable and cannot be changed unless there are no server classes running the index service in the cluster.\",\n \"enum\": [\n \"memory_optimized\",\n \"plasma\"\n ],\n \"type\": \"string\"\n },\n \"indexer\": {\n \"description\": \"Indexer allows the indexer to be configured.\",\n \"properties\": {\n \"logLevel\": {\n \"default\": \"info\",\n \"description\": \"LogLevel controls the verbosity of indexer logs. This field must be one of \\\"silent\\\", \\\"fatal\\\", \\\"error\\\", \\\"warn\\\", \\\"info\\\", \\\"verbose\\\", \\\"timing\\\", \\\"debug\\\" or \\\"trace\\\", defaulting to \\\"info\\\".\",\n \"enum\": [\n \"silent\",\n \"fatal\",\n \"error\",\n \"warn\",\n \"info\",\n \"verbose\",\n \"timing\",\n \"debug\",\n \"trace\"\n ],\n \"type\": \"string\"\n },\n \"maxRollbackPoints\": {\n \"default\": 2,\n \"description\": \"MaxRollbackPoints controls the number of checkpoints that can be rolled back to. The default is 2, with a minimum of 1.\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"memorySnapshotInterval\": {\n \"default\": \"200ms\",\n \"description\": \"MemorySnapshotInterval controls when memory indexes should be snapshotted. This defaults to 200ms, and must be greater than or equal to 1ms.\",\n \"type\": \"string\"\n },\n \"numReplica\": {\n \"default\": 0,\n \"description\": \"NumberOfReplica specifies number of secondary index replicas to be created by the Index Service whenever CREATE INDEX is invoked, which ensures high availability and high performance. Note, if nodes and num_replica are both specified in the WITH clause, the specified number of nodes must be one greater than num_replica This defaults to 0, which means no index replicas to be created by default. Minimum must be 0.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"redistributeIndexes\": {\n \"default\": false,\n \"description\": \"RedistributeIndexes when true, Couchbase Server redistributes indexes when rebalance occurs, in order to optimize performance. If false (the default), such redistribution does not occur.\",\n \"type\": \"boolean\"\n },\n \"stableSnapshotInterval\": {\n \"default\": \"5s\",\n \"description\": \"StableSnapshotInterval controls when disk indexes should be snapshotted. This defaults to 5s, and must be greater than or equal to 1ms.\",\n \"type\": \"string\"\n },\n \"storageMode\": {\n \"default\": \"memory_optimized\",\n \"description\": \"StorageMode controls the underlying storage engine for indexes. Once set it can only be modified if there are no nodes in the cluster running the index service. The field must be one of \\\"memory_optimized\\\" or \\\"plasma\\\", defaulting to \\\"memory_optimized\\\".\",\n \"enum\": [\n \"memory_optimized\",\n \"plasma\"\n ],\n \"type\": \"string\"\n },\n \"threads\": {\n \"description\": \"Threads controls the number of processor threads to use for indexing. A value of 0 means 1 per CPU. This attribute must be greater than or equal to 0, defaulting to 0.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"query\": {\n \"description\": \"Query allows the query service to be configured.\",\n \"properties\": {\n \"backfillEnabled\": {\n \"default\": true,\n \"description\": \"BackfillEnabled allows the query service to backfill.\",\n \"type\": \"boolean\"\n },\n \"temporarySpace\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"5Gi\",\n \"description\": \"TemporarySpace allows the temporary storage used by the query service backfill, per-pod, to be modified. This field requires `backfillEnabled` to be set to true in order to have any effect. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"temporarySpaceUnlimited\": {\n \"description\": \"TemporarySpaceUnlimited allows the temporary storage used by the query service backfill, per-pod, to be unconstrained. This field requires `backfillEnabled` to be set to true in order to have any effect. This field overrides `temporarySpace`.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"queryServiceMemoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"QueryServiceMemQuota is a dummy field. By default, Couchbase server provides no memory resource constraints for the query service, so this has no effect on Couchbase server. It is, however, used when the spec.autoResourceAllocation feature is enabled, and is used to define the amount of memory reserved by the query service for use with Kubernetes resource scheduling. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"searchServiceMemoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"SearchServiceMemQuota is the amount of memory that should be allocated to the search service. This value is per-pod, and only applicable to pods belonging to server classes running the search service. This field must be a quantity greater than or equal to 256Mi. This field defaults to 256Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"enableOnlineVolumeExpansion\": {\n \"description\": \"EnableOnlineVolumeExpansion enables online expansion of Persistent Volumes. You can only expand a PVC if its storage class's \\\"allowVolumeExpansion\\\" field is set to true. Additionally, Kubernetes feature \\\"ExpandInUsePersistentVolumes\\\" must be enabled in order to expand the volumes which are actively bound to Pods. Volumes can only be expanded and not reduced to a smaller size. See: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#resizing-an-in-use-persistentvolumeclaim \\n If \\\"EnableOnlineVolumeExpansion\\\" is enabled for use within an environment that does not actually support online volume and file system expansion then the cluster will fallback to rolling upgrade procedure to create a new set of Pods for use with resized Volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#expanding-persistent-volumes-claims\",\n \"type\": \"boolean\"\n },\n \"enablePreviewScaling\": {\n \"description\": \"DEPRECATED - This option only exists for backwards compatibility and no longer restricts autoscaling to ephemeral services. EnablePreviewScaling enables autoscaling for stateful services and buckets.\",\n \"type\": \"boolean\"\n },\n \"envImagePrecedence\": {\n \"description\": \"EnvImagePrecedence gives precedence over the default container image name in `spec.Image` to an image name provided through Operator environment variables. For more info on using Operator environment variables: https://docs.couchbase.com/operator/current/reference-operator-configuration.html\",\n \"type\": \"boolean\"\n },\n \"hibernate\": {\n \"description\": \"Hibernate is whether to hibernate the cluster.\",\n \"type\": \"boolean\"\n },\n \"hibernationStrategy\": {\n \"description\": \"HibernationStrategy defines how to hibernate the cluster. When Immediate the Operator will immediately delete all pods and take no further action until the hibernate field is set to false.\",\n \"enum\": [\n \"Immediate\"\n ],\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"Image is the container image name that will be used to launch Couchbase server instances. Updating this field will cause an automatic upgrade of the cluster.\",\n \"pattern\": \"^(.*?(:\\\\d+)?/)?.*?/.*?(:.*?\\\\d+\\\\.\\\\d+\\\\.\\\\d+.*|@sha256:[0-9a-f]{64})$\",\n \"type\": \"string\"\n },\n \"logging\": {\n \"description\": \"Logging defines Operator logging options.\",\n \"properties\": {\n \"audit\": {\n \"description\": \"Used to manage the audit configuration directly\",\n \"properties\": {\n \"disabledEvents\": {\n \"description\": \"The list of event ids to disable for auditing purposes. This is passed to the REST API with no verification by the operator. Refer to the documentation for details: https://docs.couchbase.com/server/current/audit-event-reference/audit-event-reference.html\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"disabledUsers\": {\n \"description\": \"The list of users to ignore for auditing purposes. This is passed to the REST API with minimal validation it meets an acceptable regex pattern. Refer to the documentation for full details on how to configure this: https://docs.couchbase.com/server/current/manage/manage-security/manage-auditing.html#ignoring-events-by-user\",\n \"items\": {\n \"description\": \"The AuditDisabledUser is actually a compound string intended to feed a two-element struct. Its value may be: 1. A local user, specified in the form localusername/local. 2. An external user, specified in the form externalusername/external. 3. An internal user, specified in the form @internalusername/local. We add a quick validation check to make sure these match and prevent being rejected by the API later. This is just a sanity check, the REST API may still reject the user for other reasons.\",\n \"pattern\": \"^.+/(local|external)$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enabled\": {\n \"description\": \"Enabled is a boolean that enables the audit capabilities.\",\n \"type\": \"boolean\"\n },\n \"garbageCollection\": {\n \"description\": \"Handle all optional garbage collection (GC) configuration for the audit functionality. This is not part of the audit REST API, it is intended to handle GC automatically for the audit logs. By default the Couchbase Server rotates the audit logs but does not clean up the rotated logs. This is left as an operation for the cluster administrator to manage, the operator allows for us to automate this: https://docs.couchbase.com/server/current/manage/manage-security/manage-auditing.html\",\n \"properties\": {\n \"sidecar\": {\n \"description\": \"Provide the sidecar configuration required (if so desired) to automatically clean up audit logs.\",\n \"properties\": {\n \"age\": {\n \"default\": \"1h\",\n \"description\": \"The minimum age of rotated log files to remove, defaults to one hour.\",\n \"type\": \"string\"\n },\n \"enabled\": {\n \"description\": \"Enable this sidecar by setting to true, defaults to being disabled.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"default\": \"busybox:1.33.1\",\n \"description\": \"Image is the image to be used to run the audit sidecar helper. No validation is carried out as this can be any arbitrary repo and tag.\",\n \"type\": \"string\"\n },\n \"interval\": {\n \"default\": \"20m\",\n \"description\": \"The interval at which to check for rotated log files to remove, defaults to 20 minutes.\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the cleanup container. Will be populated by Kubernetes defaults if not specified.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rotation\": {\n \"description\": \"The interval to optionally rotate the audit log. This is passed to the REST API, see here for details: https://docs.couchbase.com/server/current/manage/manage-security/manage-auditing.html\",\n \"properties\": {\n \"interval\": {\n \"default\": \"15m\",\n \"description\": \"The interval at which to rotate log files, defaults to 15 minutes.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"20Mi\",\n \"description\": \"Size allows the specification of a rotation size for the log, defaults to 20Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"logRetentionCount\": {\n \"description\": \"LogRetentionCount gives the number of persistent log PVCs to keep.\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"logRetentionTime\": {\n \"description\": \"LogRetentionTime gives the time to keep persistent log PVCs alive for.\",\n \"pattern\": \"^\\\\d+(ns|us|ms|s|m|h)$\",\n \"type\": \"string\"\n },\n \"server\": {\n \"description\": \"Specification of all logging configuration required to manage the sidecar containers in each pod.\",\n \"properties\": {\n \"configurationName\": {\n \"default\": \"fluent-bit-config\",\n \"description\": \"ConfigurationName is the name of the Secret to use holding the logging configuration in the namespace. A Secret is used to ensure we can safely store credentials but this can be populated from plaintext if acceptable too. If it does not exist then one will be created with defaults in the namespace so it can be easily updated whilst running. Note that if running multiple clusters in the same kubernetes namespace then you should use a separate Secret for each, otherwise the first cluster will take ownership (if created) and the Secret will be cleaned up when that cluster is removed. If running clusters in separate namespaces then they will be separate Secrets anyway.\",\n \"type\": \"string\"\n },\n \"enabled\": {\n \"description\": \"Enabled is a boolean that enables the logging sidecar container.\",\n \"type\": \"boolean\"\n },\n \"manageConfiguration\": {\n \"default\": true,\n \"description\": \"A boolean which indicates whether the operator should manage the configuration or not. If omitted then this defaults to true which means the operator will attempt to reconcile it to default values. To use a custom configuration make sure to set this to false. Note that the ownership of any Secret is not changed so if a Secret is created externally it can be updated by the operator but it's ownership stays the same so it will be cleaned up when it's owner is.\",\n \"type\": \"boolean\"\n },\n \"sidecar\": {\n \"default\": {},\n \"description\": \"Any specific logging sidecar container configuration.\",\n \"properties\": {\n \"configurationMountPath\": {\n \"default\": \"/fluent-bit/config/\",\n \"description\": \"ConfigurationMountPath is the location to mount the ConfigurationName Secret into the image. If another log shipping image is used that needs a different mount then modify this. Note that the configuration file must be called 'fluent-bit.conf' at the root of this path, there is no provision for overriding the name of the config file passed as the COUCHBASE_LOGS_CONFIG_FILE environment variable.\",\n \"type\": \"string\"\n },\n \"image\": {\n \"default\": \"couchbase/fluent-bit:1.2.1\",\n \"description\": \"Image is the image to be used to deal with logging as a sidecar. No validation is carried out as this can be any arbitrary repo and tag. It will default to the latest supported version of Fluent Bit.\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the sidecar container. Will be populated by Kubernetes defaults if not specified.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"monitoring\": {\n \"description\": \"Monitoring defines any Operator managed integration into 3rd party monitoring infrastructure.\",\n \"properties\": {\n \"prometheus\": {\n \"description\": \"Prometheus provides integration with Prometheus monitoring.\",\n \"properties\": {\n \"authorizationSecret\": {\n \"description\": \"AuthorizationSecret is the name of a Kubernetes secret that contains a bearer token to authorize GET requests to the metrics endpoint\",\n \"type\": \"string\"\n },\n \"enabled\": {\n \"description\": \"Enabled is a boolean that enables/disables the metrics sidecar container. This must be set to true, when image is provided.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the metrics image to be used to collect metrics. No validation is carried out as this can be any arbitrary repo and tag. enabled must be set to true, when image is provided.\",\n \"type\": \"string\"\n },\n \"refreshRate\": {\n \"default\": 60,\n \"description\": \"RefreshRate is the frequency in which cached statistics are updated in seconds. Shorter intervals will add additional resource overhead to clusters running Couchbase Server 7.0+ Default is 60 seconds, Maximum value is 600 seconds, and minimum value is 1 second.\",\n \"format\": \"int64\",\n \"maximum\": 600,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the metrics container. Will be populated by Kubernetes defaults if not specified.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"image\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"networking\": {\n \"description\": \"Networking defines Couchbase cluster networking options such as network topology, TLS and DDNS settings.\",\n \"properties\": {\n \"addressFamily\": {\n \"description\": \"AddressFamily allows the manual selection of the address family to use. When this field is not set, Couchbase server will default to using IPv4 for internal communication and also support IPv6 on dual stack systems. Setting this field to either IPv4 or IPv6 will force Couchbase to use the selected protocol for internal communication, and also disable all other protocols to provide added security and simplicty when defining firewall rules. Disabling of address families is only supported in Couchbase Server 7.0.2+.\",\n \"enum\": [\n \"IPv4\",\n \"IPv6\"\n ],\n \"type\": \"string\"\n },\n \"adminConsoleServiceTemplate\": {\n \"description\": \"AdminConsoleServiceTemplate provides a template used by the Operator to create and manage the admin console service. This allows services to be annotated, the service type defined and any other options that Kubernetes provides. When using a LoadBalancer service type, TLS and dynamic DNS must also be enabled. The Operator reserves the right to modify or replace any field. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#service-v1-core\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard objects metadata. This is a curated version for use with Couchbase resource templates.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\",\n \"properties\": {\n \"allocateLoadBalancerNodePorts\": {\n \"description\": \"allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \\\"true\\\". It may be set to \\\"false\\\" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type.\",\n \"type\": \"boolean\"\n },\n \"clusterIP\": {\n \"description\": \"clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \\\"None\\\", empty string (\\\"\\\"), or a valid IP address. Setting this to \\\"None\\\" makes a \\\"headless service\\\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies\",\n \"type\": \"string\"\n },\n \"clusterIPs\": {\n \"description\": \"ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \\\"None\\\", empty string (\\\"\\\"), or a valid IP address. Setting this to \\\"None\\\" makes a \\\"headless service\\\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value. \\n This field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"externalIPs\": {\n \"description\": \"externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"externalName\": {\n \"description\": \"externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \\\"ExternalName\\\".\",\n \"type\": \"string\"\n },\n \"externalTrafficPolicy\": {\n \"description\": \"externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's \\\"externally-facing\\\" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to \\\"Local\\\", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, \\\"Cluster\\\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get \\\"Cluster\\\" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node.\",\n \"type\": \"string\"\n },\n \"healthCheckNodePort\": {\n \"description\": \"healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type). This field cannot be updated once set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"internalTrafficPolicy\": {\n \"description\": \"InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to \\\"Local\\\", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, \\\"Cluster\\\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features).\",\n \"type\": \"string\"\n },\n \"ipFamilies\": {\n \"description\": \"IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \\\"IPv4\\\" and \\\"IPv6\\\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \\\"headless\\\" services. This field will be wiped when updating a Service to type ExternalName. \\n This field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.\",\n \"items\": {\n \"description\": \"IPFamily represents the IP Family (IPv4 or IPv6). This type is used to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies).\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ipFamilyPolicy\": {\n \"description\": \"IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be \\\"SingleStack\\\" (a single IP family), \\\"PreferDualStack\\\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \\\"RequireDualStack\\\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.\",\n \"type\": \"string\"\n },\n \"loadBalancerClass\": {\n \"description\": \"loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \\\"internal-vip\\\" or \\\"example.com/internal-vip\\\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.\",\n \"type\": \"string\"\n },\n \"loadBalancerIP\": {\n \"description\": \"Only applies to Service Type: LoadBalancer. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available.\",\n \"type\": \"string\"\n },\n \"loadBalancerSourceRanges\": {\n \"description\": \"If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\\\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sessionAffinity\": {\n \"description\": \"Supports \\\"ClientIP\\\" and \\\"None\\\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies\",\n \"type\": \"string\"\n },\n \"sessionAffinityConfig\": {\n \"description\": \"sessionAffinityConfig contains the configurations of session affinity.\",\n \"properties\": {\n \"clientIP\": {\n \"description\": \"clientIP contains the configurations of Client IP based session affinity.\",\n \"properties\": {\n \"timeoutSeconds\": {\n \"description\": \"timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be \\u003e0 \\u0026\\u0026 \\u003c=86400(for 1 day) if ServiceAffinity == \\\"ClientIP\\\". Default value is 10800(for 3 hours).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \\\"ClusterIP\\\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \\\"None\\\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \\\"NodePort\\\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \\\"LoadBalancer\\\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \\\"ExternalName\\\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"adminConsoleServiceType\": {\n \"default\": \"NodePort\",\n \"description\": \"DEPRECATED - by adminConsoleServiceTemplate. AdminConsoleServiceType defines whether to create a node port or load balancer service. When using a LoadBalancer service type, TLS and dynamic DNS must also be enabled. This field must be one of \\\"NodePort\\\" or \\\"LoadBalancer\\\", defaulting to \\\"NodePort\\\".\",\n \"enum\": [\n \"NodePort\",\n \"LoadBalancer\"\n ],\n \"type\": \"string\"\n },\n \"adminConsoleServices\": {\n \"description\": \"DEPRECATED - not required by Couchbase Server. AdminConsoleServices is a selector to choose specific services to expose via the admin console. This field may contain any of \\\"data\\\", \\\"index\\\", \\\"query\\\", \\\"search\\\", \\\"eventing\\\" and \\\"analytics\\\". Each service may only be included once.\",\n \"items\": {\n \"description\": \"Supported services\",\n \"enum\": [\n \"admin\",\n \"data\",\n \"index\",\n \"query\",\n \"search\",\n \"eventing\",\n \"analytics\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"cloudNativeGateway\": {\n \"description\": \"DEVELOPER PREVIEW - This feature is in developer preview. CloudNativeGateway is used to provision a gRPC gateway proxying a Couchbase cluster.\",\n \"properties\": {\n \"image\": {\n \"description\": \"DEVELOPER PREVIEW - This feature is in developer preview. Image is the Cloud Native Gateway image to be used to run the sidecar container. No validation is carried out as this can be any arbitrary repo and tag. TODO: provide a default kubebuilder default image tag as field is mandatory.\",\n \"type\": \"string\"\n },\n \"tls\": {\n \"description\": \"DEVELOPER PREVIEW - This feature is in developer preview. TLS defines the TLS configuration for the Cloud Native Gateway server including server and client certificate configuration, and TLS security policies. If no TLS config are explicitly provided, the operator generates/manages self-signed certs/keys and creates a k8s secret named `couchbase-cloud-native-gateway-self-signed-secret-\\u003ccluster-name\\u003e` unique to a Couchbase cluster, which is volume mounted to the cb k8s pod. This action could be overidden at the outset or later, by using the below TLS config or generating the secret of same name as `couchbase-cloud-native-gateway-self-signed-secret-\\u003ccluster-name\\u003e` with certificates conforming to the keys of well-known type \\\"kubernetes.io/tls\\\" with \\\"tls.crt\\\" and \\\"tls.key\\\". N.B. The secret is on per cluster basis so it's advised to use the unique cluster name else would be ignored.\",\n \"properties\": {\n \"serverSecretName\": {\n \"description\": \"DEVELOPER PREVIEW - This feature is in developer preview. ServerSecretName specifies the secret name, in the same namespace as the cluster, that contains Cloud Native Gateway gRPC server TLS data. The secret is expected to contain \\\"tls.crt\\\" and \\\"tls.key\\\" as per the kubernetes.io/tls secret type.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"image\"\n ],\n \"type\": \"object\"\n },\n \"disableUIOverHTTP\": {\n \"description\": \"DisableUIOverHTTP is used to explicitly enable and disable UI access over the HTTP protocol. If not specified, this field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"disableUIOverHTTPS\": {\n \"description\": \"DisableUIOverHTTPS is used to explicitly enable and disable UI access over the HTTPS protocol. If not specified, this field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"dns\": {\n \"description\": \"DNS defines information required for Dynamic DNS support.\",\n \"properties\": {\n \"domain\": {\n \"description\": \"Domain is the domain to create pods in. When populated the Operator will annotate the admin console and per-pod services with the key \\\"external-dns.alpha.kubernetes.io/hostname\\\". These annotations can be used directly by a Kubernetes External-DNS controller to replicate load balancer service IP addresses into a public DNS server.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"exposeAdminConsole\": {\n \"description\": \"ExposeAdminConsole creates a service referencing the admin console. The service is configured by the adminConsoleServiceTemplate field.\",\n \"type\": \"boolean\"\n },\n \"exposedFeatureServiceTemplate\": {\n \"description\": \"ExposedFeatureServiceTemplate provides a template used by the Operator to create and manage per-pod services. This allows services to be annotated, the service type defined and any other options that Kubernetes provides. When using a LoadBalancer service type, TLS and dynamic DNS must also be enabled. The Operator reserves the right to modify or replace any field. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#service-v1-core\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard objects metadata. This is a curated version for use with Couchbase resource templates.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\",\n \"properties\": {\n \"allocateLoadBalancerNodePorts\": {\n \"description\": \"allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \\\"true\\\". It may be set to \\\"false\\\" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type.\",\n \"type\": \"boolean\"\n },\n \"clusterIP\": {\n \"description\": \"clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \\\"None\\\", empty string (\\\"\\\"), or a valid IP address. Setting this to \\\"None\\\" makes a \\\"headless service\\\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies\",\n \"type\": \"string\"\n },\n \"clusterIPs\": {\n \"description\": \"ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \\\"None\\\", empty string (\\\"\\\"), or a valid IP address. Setting this to \\\"None\\\" makes a \\\"headless service\\\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value. \\n This field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"externalIPs\": {\n \"description\": \"externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"externalName\": {\n \"description\": \"externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \\\"ExternalName\\\".\",\n \"type\": \"string\"\n },\n \"externalTrafficPolicy\": {\n \"description\": \"externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's \\\"externally-facing\\\" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to \\\"Local\\\", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, \\\"Cluster\\\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get \\\"Cluster\\\" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node.\",\n \"type\": \"string\"\n },\n \"healthCheckNodePort\": {\n \"description\": \"healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type). This field cannot be updated once set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"internalTrafficPolicy\": {\n \"description\": \"InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to \\\"Local\\\", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, \\\"Cluster\\\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features).\",\n \"type\": \"string\"\n },\n \"ipFamilies\": {\n \"description\": \"IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \\\"IPv4\\\" and \\\"IPv6\\\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \\\"headless\\\" services. This field will be wiped when updating a Service to type ExternalName. \\n This field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.\",\n \"items\": {\n \"description\": \"IPFamily represents the IP Family (IPv4 or IPv6). This type is used to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies).\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ipFamilyPolicy\": {\n \"description\": \"IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be \\\"SingleStack\\\" (a single IP family), \\\"PreferDualStack\\\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \\\"RequireDualStack\\\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.\",\n \"type\": \"string\"\n },\n \"loadBalancerClass\": {\n \"description\": \"loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \\\"internal-vip\\\" or \\\"example.com/internal-vip\\\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.\",\n \"type\": \"string\"\n },\n \"loadBalancerIP\": {\n \"description\": \"Only applies to Service Type: LoadBalancer. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available.\",\n \"type\": \"string\"\n },\n \"loadBalancerSourceRanges\": {\n \"description\": \"If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\\\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sessionAffinity\": {\n \"description\": \"Supports \\\"ClientIP\\\" and \\\"None\\\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies\",\n \"type\": \"string\"\n },\n \"sessionAffinityConfig\": {\n \"description\": \"sessionAffinityConfig contains the configurations of session affinity.\",\n \"properties\": {\n \"clientIP\": {\n \"description\": \"clientIP contains the configurations of Client IP based session affinity.\",\n \"properties\": {\n \"timeoutSeconds\": {\n \"description\": \"timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be \\u003e0 \\u0026\\u0026 \\u003c=86400(for 1 day) if ServiceAffinity == \\\"ClientIP\\\". Default value is 10800(for 3 hours).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \\\"ClusterIP\\\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \\\"None\\\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \\\"NodePort\\\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \\\"LoadBalancer\\\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \\\"ExternalName\\\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"exposedFeatureServiceType\": {\n \"default\": \"NodePort\",\n \"description\": \"DEPRECATED - by exposedFeatureServiceTemplate. ExposedFeatureServiceType defines whether to create a node port or load balancer service. When using a LoadBalancer service type, TLS and dynamic DNS must also be enabled. This field must be one of \\\"NodePort\\\" or \\\"LoadBalancer\\\", defaulting to \\\"NodePort\\\".\",\n \"enum\": [\n \"NodePort\",\n \"LoadBalancer\"\n ],\n \"type\": \"string\"\n },\n \"exposedFeatureTrafficPolicy\": {\n \"description\": \"DEPRECATED - by exposedFeatureServiceTemplate. ExposedFeatureTrafficPolicy defines how packets should be routed from a load balancer service to a Couchbase pod. When local, traffic is routed directly to the pod. When cluster, traffic is routed to any node, then forwarded on. While cluster routing may be slower, there are some situations where it is required for connectivity. This field must be either \\\"Cluster\\\" or \\\"Local\\\", defaulting to \\\"Local\\\",\",\n \"enum\": [\n \"Cluster\",\n \"Local\"\n ],\n \"type\": \"string\"\n },\n \"exposedFeatures\": {\n \"description\": \"ExposedFeatures is a list of Couchbase features to expose when using a networking model that exposes the Couchbase cluster externally to Kubernetes. This field also triggers the creation of per-pod services used by clients to connect to the Couchbase cluster. When admin, only the administrator port is exposed, allowing remote administration. When xdcr, only the services required for remote replication are exposed. The xdcr feature is only required when the cluster is the destination of an XDCR replication. When client, all services are exposed as required for client SDK operation. This field may contain any of \\\"admin\\\", \\\"xdcr\\\" and \\\"client\\\". Each feature may only be included once.\",\n \"items\": {\n \"enum\": [\n \"admin\",\n \"xdcr\",\n \"client\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"loadBalancerSourceRanges\": {\n \"description\": \"DEPRECATED - by adminConsoleServiceTemplate and exposedFeatureServiceTemplate. LoadBalancerSourceRanges applies only when an exposed service is of type LoadBalancer and limits the source IP ranges that are allowed to use the service. Items must use IPv4 class-less interdomain routing (CIDR) notation e.g. 10.0.0.0/16.\",\n \"items\": {\n \"pattern\": \"^\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}/\\\\d{1,2}$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"networkPlatform\": {\n \"description\": \"NetworkPlatform is used to enable support for various networking technologies. This field must be one of \\\"Istio\\\".\",\n \"enum\": [\n \"Istio\"\n ],\n \"type\": \"string\"\n },\n \"serviceAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"DEPRECATED - by adminConsoleServiceTemplate and exposedFeatureServiceTemplate. ServiceAnnotations allows services to be annotated with custom labels. Operator annotations are merged on top of these so have precedence as they are required for correct operation.\",\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"TLS defines the TLS configuration for the cluster including server and client certificate configuration, and TLS security policies.\",\n \"properties\": {\n \"allowPlainTextCertReload\": {\n \"default\": false,\n \"description\": \"AllowPlainTextCertReload allows the reload of TLS certificates in plain text. This option should only be enabled as a means to recover connectivity with server in the event that any of the server certificates expire. When enabled the Operator only attempts plain text cert reloading when expired certificates are detected.\",\n \"type\": \"boolean\"\n },\n \"cipherSuites\": {\n \"description\": \"CipherSuites specifies a list of cipher suites for Couchbase server to select from when negotiating TLS handshakes with a client. Suites are not validated by the Operator. Run \\\"openssl ciphers -v\\\" in a Couchbase server pod to interrogate supported values.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"clientCertificatePaths\": {\n \"description\": \"ClientCertificatePaths defines where to look in client certificates in order to extract the user name.\",\n \"items\": {\n \"description\": \"ClientCertificatePath defines how to extract a username from a client ceritficate.\",\n \"properties\": {\n \"delimiter\": {\n \"description\": \"Delimiter if specified allows a suffix to be stripped from the username, once extracted from the certificate path.\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path defines where in the X.509 specification to extract the username from. This field must be either \\\"subject.cn\\\", \\\"san.uri\\\", \\\"san.dnsname\\\" or \\\"san.email\\\".\",\n \"pattern\": \"^subject\\\\.cn|san\\\\.uri|san\\\\.dnsname|san\\\\.email$\",\n \"type\": \"string\"\n },\n \"prefix\": {\n \"description\": \"Prefix allows a prefix to be stripped from the username, once extracted from the certificate path.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clientCertificatePolicy\": {\n \"description\": \"ClientCertificatePolicy defines the client authentication policy to use. If set, the Operator expects TLS configuration to contain a valid certificate/key pair for the Administrator account.\",\n \"enum\": [\n \"enable\",\n \"mandatory\"\n ],\n \"type\": \"string\"\n },\n \"nodeToNodeEncryption\": {\n \"description\": \"NodeToNodeEncryption specifies whether to encrypt data between Couchbase nodes within the same cluster. This may come at the expense of performance. When control plane only encryption is used, only cluster management traffic is encrypted between nodes. When all, all traffic is encrypted, including database documents. When strict mode is used, it is the same as all, but also disables all plaintext ports. Strict mode is only available on Couchbase Server versions 7.1 and greater. Node to node encryption can only be used when TLS certificates are managed by the Operator. This field must be either \\\"ControlPlaneOnly\\\", \\\"All\\\", or \\\"Strict\\\".\",\n \"enum\": [\n \"ControlPlaneOnly\",\n \"All\",\n \"Strict\"\n ],\n \"type\": \"string\"\n },\n \"passphrase\": {\n \"description\": \"PassphraseConfig configures the passphrase key to use with encrypted certificates. The passphrase may be registered with Couchbase Server using a local script or a rest endpoint. Private key encryption is only available on Couchbase Server versions 7.1 and greater.\",\n \"properties\": {\n \"rest\": {\n \"description\": \"PassphraseRestConfig is the configuration to register a private key passphrase with a rest endpoint. When the private key is accessed, Couchbase Server attempts to extract the password by means of the specified endpoint. The response status must be 200 and the response text must be the exact passphrase excluding newlines and extraneous spaces.\",\n \"properties\": {\n \"addressFamily\": {\n \"default\": \"inet\",\n \"description\": \"AddressFamily is the address family to use. By default inet (meaning IPV4) is used.\",\n \"enum\": [\n \"inet\",\n \"inet6\"\n ],\n \"type\": \"string\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Headers is a map of one or more key-value pairs to pass alongside the Get request.\",\n \"type\": \"object\"\n },\n \"timeout\": {\n \"default\": 5000,\n \"description\": \"Timeout is the number of milliseconds that must elapse before the call is timed out.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"url\": {\n \"description\": \"URL is the endpoint to be called to retrieve the passphrase. URL will be called using the GET method and may use http/https protocol.\",\n \"type\": \"string\"\n },\n \"verifyPeer\": {\n \"default\": true,\n \"description\": \"VerifyPeer ensures peer verification is performed when Https is used.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"script\": {\n \"description\": \"PassphraseScriptConfig is the configuration to register a private key passphrase with a script. The Operator auto-provisions the underlying script so this config simply provides a mechanism to perform the decryption of the Couchbase Private Key using a local script.\",\n \"properties\": {\n \"secret\": {\n \"description\": \"Secret is the secret containing the passphrase string. The secret is expected to contain \\\"passphrase\\\" key with the passphrase string as a value.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secret\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rootCAs\": {\n \"description\": \"RootCAs defines a set of secrets that reside in this namespace that contain additional CA certificates that should be installed in Couchbase. The CA certificates that are defined here are in addition to those defined for the cluster, optionally by couchbaseclusters.spec.networking.tls.secretSource, and thus should not be duplicated. Each Secret referred to must be of well-known type \\\"kubernetes.io/tls\\\" and must contain one or more CA certificates under the key \\\"tls.crt\\\". Multiple root CA certificates are only supported on Couchbase Server 7.1 and greater, and not with legacy couchbaseclusters.spec.networking.tls.static configuration.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"secretSource\": {\n \"description\": \"SecretSource enables the user to specify a secret conforming to the Kubernetes TLS secret specification that is used for the Couchbase server certificate, and optionally the Operator's client certificate, providing cert-manager compatibility without having to specify a separate root CA. A server CA certificate must be supplied by one of the provided methods. Certificates referred to must conform to the keys of well-known type \\\"kubernetes.io/tls\\\" with \\\"tls.crt\\\" and \\\"tls.key\\\". If the \\\"tls.key\\\" is an encrypted private key then the secret type can be the generic Opaque type since \\\"kubernetes.io/tls\\\" type secrets cannot verify encrypted keys.\",\n \"properties\": {\n \"clientSecretName\": {\n \"description\": \"ClientSecretName specifies the secret name, in the same namespace as the cluster, the contains client TLS data. The secret is expected to contain \\\"tls.crt\\\" and \\\"tls.key\\\" as per the Kubernetes.io/tls secret type.\",\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"description\": \"ServerSecretName specifies the secret name, in the same namespace as the cluster, that contains server TLS data. The secret is expected to contain \\\"tls.crt\\\" and \\\"tls.key\\\" as per the kubernetes.io/tls secret type. It may also contain \\\"ca.crt\\\". Only a single PEM formated x509 certificate can be provided to \\\"ca.crt\\\". The single certificate may also bundle together multiple root CA certificates. Multiple root CA certificates are only supported on Couchbase Server 7.1 and greater.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n },\n \"static\": {\n \"description\": \"DEPRECATED - by couchbaseclusters.spec.networking.tls.secretSource. Static enables user to generate static x509 certificates and keys, put them into Kubernetes secrets, and specify them here. Static secrets are Couchbase specific, and follow no well-known standards.\",\n \"properties\": {\n \"operatorSecret\": {\n \"description\": \"OperatorSecret is a secret name containing TLS certs used by operator to talk securely to this cluster. The secret must contain a CA certificate (data key ca.crt). If client authentication is enabled, then the secret must also contain a client certificate chain (data key \\\"couchbase-operator.crt\\\") and private key (data key \\\"couchbase-operator.key\\\").\",\n \"type\": \"string\"\n },\n \"serverSecret\": {\n \"description\": \"ServerSecret is a secret name containing TLS certs used by each Couchbase member pod for the communication between Couchbase server and its clients. The secret must contain a certificate chain (data key \\\"chain.pem\\\") and a private key (data key \\\"pkey.key\\\"). The private key must be in the PKCS#1 RSA format. The certificate chain must have a required set of X.509v3 subject alternative names for all cluster addressing modes. See the Operator TLS documentation for more information.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsMinimumVersion\": {\n \"default\": \"TLS1.2\",\n \"description\": \"TLSMinimumVersion specifies the minimum TLS version the Couchbase server can negotiate with a client. Must be one of TLS1.0, TLS1.1 TLS1.2 or TLS1.3, defaulting to TLS1.2. TLS1.3 is only valid for Couchbase Server 7.1.0 onward.\",\n \"enum\": [\n \"TLS1.0\",\n \"TLS1.1\",\n \"TLS1.2\",\n \"TLS1.3\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"waitForAddressReachable\": {\n \"default\": \"10m\",\n \"description\": \"WaitForAddressReachable is used to set the timeout between when polling of external addresses is started, and when it is deemed a failure. Polling of DNS name availability inherently dangerous due to negative caching, so prefer the use of an initial `waitForAddressReachableDelay` to allow propagation.\",\n \"type\": \"string\"\n },\n \"waitForAddressReachableDelay\": {\n \"default\": \"2m\",\n \"description\": \"WaitForAddressReachableDelay is used to defer operator checks that ensure external addresses are reachable before new nodes are balanced in to the cluster. This prevents negative DNS caching while waiting for external-DDNS controllers to propagate addresses.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"onlineVolumeExpansionTimeoutInMins\": {\n \"description\": \"OnlineVolumeExpansionTimeoutInMins must be provided as a retry mechanism with a timeout in minutes for expanding volumes. This must only be provided, if EnableOnlineVolumeExpansion is set to true. Value must be between 0 and 30. If no value is provided, then it defaults to 10 minutes.\",\n \"maximum\": 30,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"paused\": {\n \"description\": \"Paused is to pause the control of the operator for the Couchbase cluster. This does not pause the cluster itself, instead stopping the operator from taking any action.\",\n \"type\": \"boolean\"\n },\n \"platform\": {\n \"description\": \"Platform gives a hint as to what platform we are running on and how to configure services. This field must be one of \\\"aws\\\", \\\"gke\\\" or \\\"azure\\\".\",\n \"enum\": [\n \"aws\",\n \"gce\",\n \"azure\"\n ],\n \"type\": \"string\"\n },\n \"recoveryPolicy\": {\n \"description\": \"RecoveryPolicy controls how aggressive the Operator is when recovering cluster topology. When PrioritizeDataIntegrity, the Operator will delegate failover exclusively to Couchbase server, relying on it to only allow recovery when safe to do so. When PrioritizeUptime, the Operator will wait for a period after the expected auto-failover of the cluster, before forcefully failing-over the pods. This may cause data loss, and is only expected to be used on clusters with ephemeral data, where the loss of the pod means that the data is known to be unrecoverable. This field must be either \\\"PrioritizeDataIntegrity\\\" or \\\"PrioritizeUptime\\\", defaulting to \\\"PrioritizeDataIntegrity\\\".\",\n \"enum\": [\n \"PrioritizeDataIntegrity\",\n \"PrioritizeUptime\"\n ],\n \"type\": \"string\"\n },\n \"rollingUpgrade\": {\n \"description\": \"When `spec.upgradeStrategy` is set to `RollingUpgrade` it will, by default, upgrade one pod at a time. If this field is specified then that number can be increased.\",\n \"properties\": {\n \"maxUpgradable\": {\n \"description\": \"MaxUpgradable allows the number of pods affected by an upgrade at any one time to be increased. By default a rolling upgrade will upgrade one pod at a time. This field allows that limit to be removed. This field must be greater than zero. The smallest of `maxUpgradable` and `maxUpgradablePercent` takes precedence if both are defined.\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"maxUpgradablePercent\": {\n \"description\": \"MaxUpgradablePercent allows the number of pods affected by an upgrade at any one time to be increased. By default a rolling upgrade will upgrade one pod at a time. This field allows that limit to be removed. This field must be an integer percentage, e.g. \\\"10%\\\", in the range 1% to 100%. Percentages are relative to the total cluster size, and rounded down to the nearest whole number, with a minimum of 1. For example, a 10 pod cluster, and 25% allowed to upgrade, would yield 2.5 pods per iteration, rounded down to 2. The smallest of `maxUpgradable` and `maxUpgradablePercent` takes precedence if both are defined.\",\n \"pattern\": \"^(100|[1-9][0-9]|[1-9])%$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"security\": {\n \"description\": \"Security defines Couchbase cluster security options such as the administrator account username and password, and user RBAC settings.\",\n \"properties\": {\n \"adminSecret\": {\n \"description\": \"AdminSecret is the name of a Kubernetes secret to use for administrator authentication. The admin secret must contain the keys \\\"username\\\" and \\\"password\\\". The password data must be at least 6 characters in length, and not contain the any of the characters `()\\u003c\\u003e,;:\\\\\\\"/[]?={}`.\",\n \"type\": \"string\"\n },\n \"ldap\": {\n \"description\": \"LDAP provides settings to authenticate and authorize LDAP users with Couchbase Server. When specified, the Operator keeps these settings in sync with Cocuhbase Server's LDAP configuration. Leave empty to manually manage LDAP configuration.\",\n \"properties\": {\n \"authenticationEnabled\": {\n \"default\": true,\n \"description\": \"AuthenticationEnabled allows users who attempt to access Couchbase Server without having been added as local users to be authenticated against the specified LDAP Host(s).\",\n \"type\": \"boolean\"\n },\n \"authorizationEnabled\": {\n \"description\": \"AuthorizationEnabled allows authenticated LDAP users to be authorized with RBAC roles granted to any Couchbase Server group associated with the user.\",\n \"type\": \"boolean\"\n },\n \"bindDN\": {\n \"description\": \"DN to use for searching users and groups synchronization. More info: https://docs.couchbase.com/server/current/manage/manage-security/configure-ldap.html\",\n \"type\": \"string\"\n },\n \"bindSecret\": {\n \"description\": \"BindSecret is the name of a Kubernetes secret to use containing password for LDAP user binding. The bindSecret must have a key with the name \\\"password\\\" and a value which corresponds to the password of the binding LDAP user.\",\n \"type\": \"string\"\n },\n \"cacert\": {\n \"description\": \"DEPRECATED - Field is ignored, use tlsSecret. CA Certificate in PEM format to be used in LDAP server certificate validation. This cert is the string form of the secret provided to `spec.tls.tlsSecret`.\",\n \"type\": \"string\"\n },\n \"cacheValueLifetime\": {\n \"default\": 30000,\n \"description\": \"Lifetime of values in cache in milliseconds. Default 300000 ms. More info: https://docs.couchbase.com/server/current/manage/manage-security/configure-ldap.html\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"encryption\": {\n \"description\": \"Encryption determines how the connection with the LDAP server should be encrypted. Encryption may set as either StartTLSExtension, TLS, or false. When set to \\\"false\\\" then no verification of the LDAP hostname is performed. When Encryption is StartTLSExtension, or TLS is set then the default behavior is to use the certificate already loaded into the Couchbase Cluster for certificate validation, otherwise `ldap.tlsSecret` may be set to override The Couchbase certificate.\",\n \"enum\": [\n \"None\",\n \"StartTLSExtension\",\n \"TLS\"\n ],\n \"type\": \"string\"\n },\n \"groupsQuery\": {\n \"description\": \"LDAP query, to get the users' groups by username in RFC4516 format. More info: https://docs.couchbase.com/server/current/manage/manage-security/configure-ldap.html\",\n \"type\": \"string\"\n },\n \"hosts\": {\n \"description\": \"List of LDAP hosts to provide authentication-support for Couchbase Server. Host name must be a valid IP address or DNS Name e.g openldap.default.svc, 10.0.92.147.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"nestedGroupsEnabled\": {\n \"description\": \"If enabled Couchbase server will try to recursively search for groups for every discovered ldap group. groups_query will be user for the search. More info: https://docs.couchbase.com/server/current/manage/manage-security/configure-ldap.html\",\n \"type\": \"boolean\"\n },\n \"nestedGroupsMaxDepth\": {\n \"default\": 10,\n \"description\": \"Maximum number of recursive groups requests the server is allowed to perform. Requires NestedGroupsEnabled. Values between 1 and 100: the default is 10. More info: https://docs.couchbase.com/server/current/manage/manage-security/configure-ldap.html\",\n \"format\": \"int64\",\n \"maximum\": 100,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"port\": {\n \"default\": 389,\n \"description\": \"LDAP port. This is typically 389 for LDAP, and 636 for LDAPS.\",\n \"type\": \"integer\"\n },\n \"serverCertValidation\": {\n \"description\": \"Whether server certificate validation be enabled.\",\n \"type\": \"boolean\"\n },\n \"tlsSecret\": {\n \"description\": \"TLSSecret is the name of a Kubernetes secret to use explcitly for LDAP ca cert. If TLSSecret is not provided, certificates found in `couchbaseclusters.spec.networking.tls.rootCAs` will be used instead. If provided, the secret must contain the ca to be used under the name \\\"ca.crt\\\".\",\n \"type\": \"string\"\n },\n \"userDNMapping\": {\n \"description\": \"User to distinguished name (DN) mapping. If none is specified, the username is used as the user’s distinguished name. More info: https://docs.couchbase.com/server/current/manage/manage-security/configure-ldap.html\",\n \"properties\": {\n \"query\": {\n \"description\": \"Query is the LDAP query to run to map from Couchbase user to LDAP distinguished name.\",\n \"type\": \"string\"\n },\n \"template\": {\n \"description\": \"This field specifies list of templates to use for providing username to DN mapping. The template may contain a placeholder specified as `%u` to represent the Couchbase user who is attempting to gain access.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"bindSecret\",\n \"hosts\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext allows the configuration of the security context for all Couchbase server pods. When using persistent volumes you may need to set the fsGroup field in order to write to the volume. For non-root clusters you must also set runAsUser to 1000, corresponding to the Couchbase user in official container images. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \\n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \\n If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"description\": \"RBAC is the options provided for enabling and selecting RBAC User resources to manage.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed defines whether RBAC is managed by us or the clients.\",\n \"type\": \"boolean\"\n },\n \"selector\": {\n \"description\": \"Selector is a label selector used to list RBAC resources in the namespace that are managed by the Operator.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. Use securityContext.allowPrivilegeEscalation field to grant more privileges than its parent process. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"uiSessionTimeout\": {\n \"default\": 0,\n \"description\": \"UISessionTimeout sets how long, in minutes, before a user is declared inactive and signed out from the Couchbase Server UI. 0 represents no time out.\",\n \"maximum\": 16666,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"adminSecret\"\n ],\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"DEPRECATED - by spec.security.securityContext SecurityContext allows the configuration of the security context for all Couchbase server pods. When using persistent volumes you may need to set the fsGroup field in order to write to the volume. For non-root clusters you must also set runAsUser to 1000, corresponding to the Couchbase user in official container images. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \\n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \\n If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverGroups\": {\n \"description\": \"ServerGroups define the set of availability zones you want to distribute pods over, and construct Couchbase server groups for. By default, most cloud providers will label nodes with the key \\\"topology.kubernetes.io/zone\\\", the values associated with that key are used here to provide explicit scheduling by the Operator. You may manually label nodes using the \\\"topology.kubernetes.io/zone\\\" key, to provide failure-domain aware scheduling when none is provided for you. Global server groups are applied to all server classes, and may be overridden on a per-server class basis to give more control over scheduling and server groups.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"servers\": {\n \"description\": \"Servers defines server classes for the Operator to provision and manage. A server class defines what services are running and how many members make up that class. Specifying multiple server classes allows the Operator to provision clusters with Multi-Dimensional Scaling (MDS). At least one server class must be defined, and at least one server class must be running the data service.\",\n \"items\": {\n \"properties\": {\n \"autoscaleEnabled\": {\n \"description\": \"AutoscaledEnabled defines whether the autoscaling feature is enabled for this class. When true, the Operator will create a CouchbaseAutoscaler resource for this server class. The CouchbaseAutoscaler implements the Kubernetes scale API and can be controlled by the Kubernetes horizontal pod autoscaler (HPA).\",\n \"type\": \"boolean\"\n },\n \"env\": {\n \"description\": \"Env allows the setting of environment variables in the Couchbase server container.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"EnvFrom allows the setting of environment variables in the Couchbase server container.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is a textual name for the server configuration and must be unique. The name is used by the operator to uniquely identify a server class, and map pods back to an intended configuration.\",\n \"type\": \"string\"\n },\n \"pod\": {\n \"description\": \"Pod defines a template used to create pod for each Couchbase server instance. Modifying pod metadata such as labels and annotations will update the pod in-place. Any other modification will result in a cluster upgrade in order to fulfill the request. The Operator reserves the right to modify or replace any field. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#pod-v1-core\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard objects metadata. This is a curated version for use with Couchbase resource templates.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"PodSpec is a description of a pod.\",\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"description\": \"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"description\": \"If specified, the pod's scheduling constraints\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"description\": \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\n \"type\": \"boolean\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.\",\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.\",\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"description\": \"EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"hostIPC\": {\n \"description\": \"Use the host's ipc namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"description\": \"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"description\": \"Use the host's pid namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostUsers\": {\n \"description\": \"Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.\",\n \"type\": \"boolean\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"description\": \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\",\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"description\": \"Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set. \\n If the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions \\n If the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md\",\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"description\": \"PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\",\n \"type\": \"string\"\n },\n \"resourceClaims\": {\n \"description\": \"ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable.\",\n \"items\": {\n \"description\": \"PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.\",\n \"type\": \"string\"\n },\n \"source\": {\n \"description\": \"Source describes where to find the ResourceClaim.\",\n \"properties\": {\n \"resourceClaimName\": {\n \"description\": \"ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.\",\n \"type\": \"string\"\n },\n \"resourceClaimTemplateName\": {\n \"description\": \"ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod. \\n The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. \\n This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\",\n \"type\": \"string\"\n },\n \"schedulingGates\": {\n \"description\": \"SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod. \\n SchedulingGates can only be set at pod creation time, and be removed only afterwards. \\n This is a beta feature enabled by the PodSchedulingReadiness feature gate.\",\n \"items\": {\n \"description\": \"PodSchedulingGate is associated to a Pod to guard its scheduling.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the scheduling gate. Each scheduling gate must have a unique name field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"serviceAccount\": {\n \"description\": \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"description\": \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\",\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"description\": \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector. \\n This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"maxSkew\": {\n \"description\": \"MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minDomains\": {\n \"description\": \"MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \\\"global minimum\\\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule. \\n For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \\\"global minimum\\\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew. \\n This is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeAffinityPolicy\": {\n \"description\": \"NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. \\n If this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"nodeTaintsPolicy\": {\n \"description\": \"NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included. \\n If this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"topologyKey\": {\n \"description\": \"TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \\u003ckey, value\\u003e as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \\\"kubernetes.io/hostname\\\", each Node is a domain of that topology. And, if TopologyKey is \\\"topology.kubernetes.io/zone\\\", each zone is a domain of that topology. It's a required field.\",\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"description\": \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assignment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources are the resource requirements for the Couchbase server container. This field overrides any automatic allocation as defined by `spec.autoResourceAllocation`.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverGroups\": {\n \"description\": \"ServerGroups define the set of availability zones you want to distribute pods over, and construct Couchbase server groups for. By default, most cloud providers will label nodes with the key \\\"topology.kubernetes.io/zone\\\", the values associated with that key are used here to provide explicit scheduling by the Operator. You may manually label nodes using the \\\"topology.kubernetes.io/zone\\\" key, to provide failure-domain aware scheduling when none is provided for you. Global server groups are applied to all server classes, and may be overridden on a per-server class basis to give more control over scheduling and server groups.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"services\": {\n \"description\": \"Services is the set of Couchbase services to run on this server class. At least one class must contain the data service. The field may contain any of \\\"data\\\", \\\"index\\\", \\\"query\\\", \\\"search\\\", \\\"eventing\\\" or \\\"analytics\\\". Each service may only be specified once.\",\n \"items\": {\n \"description\": \"Supported services\",\n \"enum\": [\n \"admin\",\n \"data\",\n \"index\",\n \"query\",\n \"search\",\n \"eventing\",\n \"analytics\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"size\": {\n \"description\": \"Size is the expected requested of the server class. This field must be greater than or equal to 1.\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts define persistent volume claims to attach to pod.\",\n \"properties\": {\n \"analytics\": {\n \"description\": \"AnalyticsClaims are persistent volumes that encompass analytics storage associated with the analytics service. Analytics claims can only be used on server classes running the analytics service, and must be used in conjunction with the default claim. This field allows the analytics service to use different storage media (e.g. SSD), and scale horizontally, to improve performance of this service. This field references a volume claim template name as defined in \\\"spec.volumeClaimTemplates\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"data\": {\n \"description\": \"DataClaim is a persistent volume that encompasses key/value storage associated with the data service. The data claim can only be used on server classes running the data service, and must be used in conjunction with the default claim. This field allows the data service to use different storage media (e.g. SSD) to improve performance of this service. This field references a volume claim template name as defined in \\\"spec.volumeClaimTemplates\\\".\",\n \"type\": \"string\"\n },\n \"default\": {\n \"description\": \"DefaultClaim is a persistent volume that encompasses all Couchbase persistent data, including document storage, indexes and logs. The default volume can be used with any server class. Use of the default claim allows the Operator to recover failed pods from the persistent volume far quicker than if the pod were using ephemeral storage. The default claim cannot be used at the same time as the logs claim within the same server class. This field references a volume claim template name as defined in \\\"spec.volumeClaimTemplates\\\".\",\n \"type\": \"string\"\n },\n \"index\": {\n \"description\": \"IndexClaim s a persistent volume that encompasses index storage associated with the index and search services. The index claim can only be used on server classes running the index or search services, and must be used in conjunction with the default claim. This field allows the index and/or search service to use different storage media (e.g. SSD) to improve performance of this service. This field references a volume claim template name as defined in \\\"spec.volumeClaimTemplates\\\". Whilst this references index primarily, note that the full text search (FTS) service also uses this same mount.\",\n \"type\": \"string\"\n },\n \"logs\": {\n \"description\": \"LogsClaim is a persistent volume that encompasses only Couchbase server logs to aid with supporting the product. The logs claim can only be used on server classes running the following services: query, search \\u0026 eventing. The logs claim cannot be used at the same time as the default claim within the same server class. This field references a volume claim template name as defined in \\\"spec.volumeClaimTemplates\\\". Whilst the logs claim can be used with the search service, the recommendation is to use the default claim for these. The reason for this is that a failure of these nodes will require indexes to be rebuilt and subsequent performance impact.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\",\n \"services\",\n \"size\"\n ],\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"softwareUpdateNotifications\": {\n \"description\": \"SoftwareUpdateNotifications enables software update notifications in the UI. When enabled, the UI will alert when a Couchbase server upgrade is available.\",\n \"type\": \"boolean\"\n },\n \"upgradeProcess\": {\n \"description\": \"UpgradeProcess defines the process that will be used when performing a couchbase cluster upgrade. When SwapRebalance is requested (default), pods will be upgraded using either a RollingUpgrade or ImmediateUpgrade (determined by UpgradeStrategy). When DeltaRecovery is requested, the operator will perform an in-place upgrade on a best effort basis. DeltaRecovery cannot be used if the UpgradeStrategy is set to ImmediateUpgrade.\",\n \"enum\": [\n \"SwapRebalance\",\n \"DeltaRecovery\"\n ],\n \"type\": \"string\"\n },\n \"upgradeStrategy\": {\n \"description\": \"UpgradeStrategy controls how aggressive the Operator is when performing a cluster upgrade. When a rolling upgrade is requested, pods are upgraded one at a time. This strategy is slower, however less disruptive. When an immediate upgrade strategy is requested, all pods are upgraded at the same time. This strategy is faster, but more disruptive. This field must be either \\\"RollingUpgrade\\\" or \\\"ImmediateUpgrade\\\", defaulting to \\\"RollingUpgrade\\\".\",\n \"enum\": [\n \"RollingUpgrade\",\n \"ImmediateUpgrade\"\n ],\n \"type\": \"string\"\n },\n \"volumeClaimTemplates\": {\n \"description\": \"VolumeClaimTemplates define the desired characteristics of a volume that can be requested/claimed by a pod, for example the storage class to use and the volume size. Volume claim templates are referred to by name by server class volume mount configuration.\",\n \"items\": {\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard objects metadata. This is a curated version for use with Couchbase resource templates.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While dataSource ignores disallowed values (dropping them), dataSourceRef preserves all values, and generates an error if a disallowed value is specified. * While dataSource only allows local objects, dataSourceRef allows objects in any namespaces. (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\",\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"xdcr\": {\n \"description\": \"XDCR defines whether the Operator should manage XDCR, remote clusters and how to lookup replication resources.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed defines whether XDCR is managed by the operator or not.\",\n \"type\": \"boolean\"\n },\n \"remoteClusters\": {\n \"description\": \"RemoteClusters is a set of named remote clusters to establish replications to.\",\n \"items\": {\n \"description\": \"RemoteCluster is a reference to a remote cluster for XDCR.\",\n \"properties\": {\n \"authenticationSecret\": {\n \"description\": \"AuthenticationSecret is a secret used to authenticate when establishing a remote connection. It is only required when not using mTLS. The secret must contain a username (secret key \\\"username\\\") and password (secret key \\\"password\\\").\",\n \"type\": \"string\"\n },\n \"hostname\": {\n \"description\": \"Hostname is the connection string to use to connect the remote cluster. To use IPv6, place brackets (`[`, `]`) around the IPv6 value.\",\n \"pattern\": \"^((couchbase|http)(s)?(://))?((\\\\b((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\\\\.|$)){4}\\\\b)|((([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9]))|\\\\[(\\\\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))(%.+)?\\\\s*\\\\]))(:[0-9]{0,5})?(\\\\\\\\{0,1}\\\\?network=[^\\u0026]+)?$\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the remote cluster. Note that, -operator-managed is added as suffix by operator automatically to the name in order to diffrentiate from non operator managed remote clusters.\",\n \"type\": \"string\"\n },\n \"replications\": {\n \"description\": \"Replications are replication streams from this cluster to the remote one. This field defines how to look up CouchbaseReplication resources. By default any CouchbaseReplication resources in the namespace will be considered.\",\n \"properties\": {\n \"selector\": {\n \"description\": \"Selector allows CouchbaseReplication resources to be filtered based on labels.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"TLS if specified references a resource containing the necessary certificate data for an encrypted connection.\",\n \"properties\": {\n \"secret\": {\n \"description\": \"Secret references a secret containing the CA certificate (data key \\\"ca\\\"), and optionally a client certificate (data key \\\"certificate\\\") and key (data key \\\"key\\\").\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secret\"\n ],\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"UUID of the remote cluster. The UUID of a CouchbaseCluster resource is advertised in the status.clusterId field of the resource.\",\n \"pattern\": \"^[0-9a-f]{32}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"hostname\",\n \"name\",\n \"uuid\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"image\",\n \"security\",\n \"servers\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Cluster\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json new file mode 100644 index 00000000000..c13e3b5c002 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Collection", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseCollection", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseCollection represent the finest grained size of data storage in Couchbase. Collections contain all documents and indexes in the system. Collections also form the finest grain basis for role-based access control (RBAC) and cross-datacenter replication (XDCR). In order to be considered by the Operator, every collection must be referenced by a `CouchbaseScope` or `CouchbaseScopeGroup` resource.\",\n \"properties\": {\n \"spec\": {\n \"default\": {},\n \"description\": \"Spec defines the desired state of the resource.\",\n \"properties\": {\n \"maxTTL\": {\n \"description\": \"MaxTTL defines how long a document is permitted to exist for, without modification, until it is automatically deleted. This field takes precedence over any TTL defined at the bucket level. This is a default, and maximum time-to-live and may be set to a lower value by the client. If the client specifies a higher value, then it is truncated to the maximum durability. Documents are removed by Couchbase, after they have expired, when either accessed, the expiry pager is run, or the bucket is compacted. When set to 0, then documents are not expired by default. This field must be a duration in the range 0-2147483648s, defaulting to 0. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name specifies the name of the collection. By default, the metadata.name is used to define the collection name, however, due to the limited character set, this field can be used to override the default and provide the full functionality. Additionally the `metadata.name` field is a DNS label, and thus limited to 63 characters, this field must be used if the name is longer than this limit. Collection names must be 1-251 characters in length, contain only [a-zA-Z0-9_-%] and not start with either _ or %.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Couchbase Collection\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json new file mode 100644 index 00000000000..249eb124a0f --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Collection Group", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseCollectionGroup", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseCollectionGroup represent the finest grained size of data storage in Couchbase. Collections contain all documents and indexes in the system. Collections also form the finest grain basis for role-based access control (RBAC) and cross-datacenter replication (XDCR). In order to be considered by the Operator, every collection group must be referenced by a `CouchbaseScope` or `CouchbaseScopeGroup` resource. Unlike the CouchbaseCollection resource, a collection group represents multiple collections, with common configuration parameters, to be expressed as a single resource, minimizing required configuration and Kubernetes API traffic. It also forms the basis of Couchbase RBAC security boundaries.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec defines the desired state of the resource.\",\n \"properties\": {\n \"maxTTL\": {\n \"description\": \"MaxTTL defines how long a document is permitted to exist for, without modification, until it is automatically deleted. This field takes precedence over any TTL defined at the bucket level. This is a default, and maximum time-to-live and may be set to a lower value by the client. If the client specifies a higher value, then it is truncated to the maximum durability. Documents are removed by Couchbase, after they have expired, when either accessed, the expiry pager is run, or the bucket is compacted. When set to 0, then documents are not expired by default. This field must be a duration in the range 0-2147483648s, defaulting to 0. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"names\": {\n \"description\": \"Names specifies the names of the collections. Unlike CouchbaseCollection, which specifies a single collection, a collection group specifies multiple, and the collection group must specify at least one collection name. Any collection names specified must be unique. Collection names must be 1-251 characters in length, contain only [a-zA-Z0-9_-%] and not start with either _ or %.\",\n \"items\": {\n \"description\": \"ScopeOrCollectionName is a generic type to capture a valid scope or collection name. These must consist of 1-251 characters, include only A-Z, a-z, 0-9, -, _ or %, and must not start with _ (which is an internal marker) or % (which is probably an escape character in language X).\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n }\n },\n \"required\": [\n \"names\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Collection Group\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json new file mode 100644 index 00000000000..91f8a1b7e46 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Ephemeral Bucket", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseEphemeralBucket", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"The CouchbaseEphemeralBucket resource defines a set of documents in Couchbase server. A Couchbase client connects to and operates on a bucket, which provides independent management of a set documents and a security boundary for role based access control. A CouchbaseEphemeralBucket provides in-memory only storage and replication for documents contained by it.\",\n \"properties\": {\n \"spec\": {\n \"default\": {},\n \"description\": \"CouchbaseEphemeralBucketSpec is the specification for an ephemeral Couchbase bucket resource, and allows the bucket to be customized.\",\n \"properties\": {\n \"compressionMode\": {\n \"default\": \"passive\",\n \"description\": \"CompressionMode defines how Couchbase server handles document compression. When off, documents are stored in memory, and transferred to the client uncompressed. When passive, documents are stored compressed in memory, and transferred to the client compressed when requested. When active, documents are stored compresses in memory and when transferred to the client. This field must be \\\"off\\\", \\\"passive\\\" or \\\"active\\\", defaulting to \\\"passive\\\". Be aware \\\"off\\\" in YAML 1.2 is a boolean, so must be quoted as a string in configuration files.\",\n \"enum\": [\n \"off\",\n \"passive\",\n \"active\"\n ],\n \"type\": \"string\"\n },\n \"conflictResolution\": {\n \"default\": \"seqno\",\n \"description\": \"ConflictResolution defines how XDCR handles concurrent write conflicts. Sequence number based resolution selects the document with the highest sequence number as the most recent. Timestamp based resolution selects the document that was written to most recently as the most recent. This field must be \\\"seqno\\\" (sequence based), or \\\"lww\\\" (timestamp based), defaulting to \\\"seqno\\\".\",\n \"enum\": [\n \"seqno\",\n \"lww\"\n ],\n \"type\": \"string\"\n },\n \"enableFlush\": {\n \"description\": \"EnableFlush defines whether a client can delete all documents in a bucket. This field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"evictionPolicy\": {\n \"default\": \"noEviction\",\n \"description\": \"EvictionPolicy controls how Couchbase handles memory exhaustion. No eviction means that Couchbase server will make this bucket read-only when memory is exhausted in order to avoid data loss. NRU eviction will delete documents that haven't been used recently in order to free up memory. This field must be \\\"noEviction\\\" or \\\"nruEviction\\\", defaulting to \\\"noEviction\\\".\",\n \"enum\": [\n \"noEviction\",\n \"nruEviction\"\n ],\n \"type\": \"string\"\n },\n \"ioPriority\": {\n \"default\": \"low\",\n \"description\": \"IOPriority controls how many threads a bucket has, per pod, to process reads and writes. This field must be \\\"low\\\" or \\\"high\\\", defaulting to \\\"low\\\". Modification of this field will cause a temporary service disruption as threads are restarted.\",\n \"enum\": [\n \"low\",\n \"high\"\n ],\n \"type\": \"string\"\n },\n \"maxTTL\": {\n \"description\": \"MaxTTL defines how long a document is permitted to exist for, without modification, until it is automatically deleted. This is a default and maximum time-to-live and may be set to a lower value by the client. If the client specifies a higher value, then it is truncated to the maximum durability. Documents are removed by Couchbase, after they have expired, when either accessed, the expiry pager is run, or the bucket is compacted. When set to 0, then documents are not expired by default. This field must be a duration in the range 0-2147483648s, defaulting to 0. More info: https://golang.org/pkg/time/#ParseDuration\",\n \"type\": \"string\"\n },\n \"memoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100Mi\",\n \"description\": \"MemoryQuota is a memory limit to the size of a bucket. When this limit is exceeded, documents will be evicted from memory defined by the eviction policy. The memory quota is defined per Couchbase pod running the data service. This field defaults to, and must be greater than or equal to 100Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumDurability\": {\n \"description\": \"MiniumumDurability defines how durable a document write is by default, and can be made more durable by the client. This feature enables ACID transactions. When none, Couchbase server will respond when the document is in memory, it will become eventually consistent across the cluster. When majority, Couchbase server will respond when the document is replicated to at least half of the pods running the data service in the cluster. This field must be either \\\"none\\\" or \\\"majority\\\", defaulting to \\\"none\\\".\",\n \"enum\": [\n \"none\",\n \"majority\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the bucket within Couchbase server. By default the Operator will use the `metadata.name` field to define the bucket name. The `metadata.name` field only supports a subset of the supported character set. When specified, this field overrides `metadata.name`. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n },\n \"replicas\": {\n \"default\": 1,\n \"description\": \"Replicas defines how many copies of documents Couchbase server maintains. This directly affects how fault tolerant a Couchbase cluster is. With a single replica, the cluster can tolerate one data pod going down and still service requests without data loss. The number of replicas also affect memory use. With a single replica, the effective memory quota for documents is halved, with two replicas it is one third. The number of replicas must be between 0 and 3, defaulting to 1.\",\n \"maximum\": 3,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"scopes\": {\n \"description\": \"Scopes defines whether the Operator manages scopes for the bucket or not, and the set of scopes defined for the bucket.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed defines whether scopes are managed for this bucket. This field is `false` by default, and the Operator will take no actions that will affect scopes and collections in this bucket. The default scope and collection will be present. When set to `true`, the Operator will manage user defined scopes, and optionally, their collections as defined by the `CouchbaseScope`, `CouchbaseScopeGroup`, `CouchbaseCollection` and `CouchbaseCollectionGroup` resource documentation. If this field is set to `false` while the already managed, then the Operator will leave whatever configuration is already present.\",\n \"type\": \"boolean\"\n },\n \"resources\": {\n \"description\": \"Resources is an explicit list of named resources that will be considered for inclusion in this bucket. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseScope\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A scope can only reference `CouchbaseScope` and `CouchbaseScopeGroup` resource kinds. This field defaults to `CouchbaseScope` if not specified.\",\n \"enum\": [\n \"CouchbaseScope\",\n \"CouchbaseScopeGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced. Legal scope names have a maximum length of 251 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"_-%\\\".\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this bucket. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Couchbase Ephemeral Bucket\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json new file mode 100644 index 00000000000..d01fa6adab8 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Group", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseGroup", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseGroup allows the automation of Couchbase group management.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CouchbaseGroupSpec allows the specification of Couchbase group configuration.\",\n \"properties\": {\n \"ldapGroupRef\": {\n \"description\": \"LDAPGroupRef is a reference to an LDAP group.\",\n \"type\": \"string\"\n },\n \"roles\": {\n \"description\": \"Roles is a list of roles that this group is granted.\",\n \"items\": {\n \"properties\": {\n \"bucket\": {\n \"description\": \"Bucket name for bucket admin roles. When not specified for a role that can be scoped to a specific bucket, the role will apply to all buckets in the cluster. Deprecated: Couchbase Autonomous Operator 2.3\",\n \"pattern\": \"^\\\\*$|^[a-zA-Z0-9-_%\\\\.]+$\",\n \"type\": \"string\"\n },\n \"buckets\": {\n \"description\": \"Bucket level access to apply to specified role. The bucket must exist. When not specified, the bucket field will be checked. If both are empty and the role can be scoped to a specific bucket, the role will apply to all buckets in the cluster\",\n \"properties\": {\n \"resources\": {\n \"description\": \"Resources is an explicit list of named bucket resources that will be considered for inclusion in this role. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseBucket\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A Role can only reference `CouchbaseBucket` kind. This field defaults to `CouchbaseBucket` if not specified.\",\n \"enum\": [\n \"CouchbaseBucket\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this role. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"collections\": {\n \"description\": \"Collection level access to apply to the specified role. The collection must exist. When not specified, the role is subject to scope or bucket level access.\",\n \"properties\": {\n \"resources\": {\n \"description\": \"Resources is an explicit list of named resources that will be considered for inclusion in this collection or collections. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseCollection\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A scope can only reference `CouchbaseCollection` and `CouchbaseCollectionGroup` resource kinds. This field defaults to `CouchbaseCollection` if not specified.\",\n \"enum\": [\n \"CouchbaseCollection\",\n \"CouchbaseCollectionGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced. Legal collection names have a maximum length of 251 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"_-%\\\".\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this collection or collections. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of role.\",\n \"enum\": [\n \"admin\",\n \"analytics_admin\",\n \"analytics_manager\",\n \"analytics_reader\",\n \"analytics_select\",\n \"backup_admin\",\n \"bucket_admin\",\n \"bucket_full_access\",\n \"cluster_admin\",\n \"data_backup\",\n \"data_dcp_reader\",\n \"data_monitoring\",\n \"data_reader\",\n \"data_writer\",\n \"eventing_admin\",\n \"external_stats_reader\",\n \"fts_admin\",\n \"fts_searcher\",\n \"mobile_sync_gateway\",\n \"mobile_sync_gateway_application\",\n \"mobile_sync_gateway_application_read_only\",\n \"mobile_sync_gateway_architect\",\n \"mobile_sync_gateway_dev_ops\",\n \"mobile_sync_gateway_replicator\",\n \"query_delete\",\n \"query_execute_external_functions\",\n \"query_execute_functions\",\n \"query_execute_global_external_functions\",\n \"query_execute_global_functions\",\n \"query_external_access\",\n \"query_insert\",\n \"query_manage_external_functions\",\n \"query_manage_functions\",\n \"query_manage_global_external_functions\",\n \"query_manage_global_functions\",\n \"query_manage_index\",\n \"query_select\",\n \"query_system_catalog\",\n \"query_update\",\n \"replication_admin\",\n \"replication_target\",\n \"ro_admin\",\n \"scope_admin\",\n \"security_admin\",\n \"security_admin_external\",\n \"security_admin_local\",\n \"views_admin\",\n \"views_reader\"\n ],\n \"type\": \"string\"\n },\n \"scopes\": {\n \"description\": \"Scope level access to apply to specified role. The scope must exist. When not specified, the role will apply to selected bucket or all buckets in the cluster.\",\n \"properties\": {\n \"resources\": {\n \"description\": \"Resources is an explicit list of named resources that will be considered for inclusion in this scope or scopes. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseScope\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A scope can only reference `CouchbaseScope` and `CouchbaseScopeGroup` resource kinds. This field defaults to `CouchbaseScope` if not specified.\",\n \"enum\": [\n \"CouchbaseScope\",\n \"CouchbaseScopeGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced. Legal scope names have a maximum length of 251 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"_-%\\\".\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this scope or scopes. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"roles\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Group\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json new file mode 100644 index 00000000000..b478f834fcd --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Memcached Bucket", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseMemcachedBucket", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"The CouchbaseMemcachedBucket resource defines a set of documents in Couchbase server. A Couchbase client connects to and operates on a bucket, which provides independent management of a set documents and a security boundary for role based access control. A CouchbaseEphemeralBucket provides in-memory only storage for documents contained by it.\",\n \"properties\": {\n \"spec\": {\n \"default\": {},\n \"description\": \"CouchbaseMemcachedBucketSpec is the specification for a Memcached bucket resource, and allows the bucket to be customized.\",\n \"properties\": {\n \"enableFlush\": {\n \"description\": \"EnableFlush defines whether a client can delete all documents in a bucket. This field defaults to false.\",\n \"type\": \"boolean\"\n },\n \"memoryQuota\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100Mi\",\n \"description\": \"MemoryQuota is a memory limit to the size of a bucket. The memory quota is defined per Couchbase pod running the data service. This field defaults to, and must be greater than or equal to 100Mi. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"name\": {\n \"description\": \"Name is the name of the bucket within Couchbase server. By default the Operator will use the `metadata.name` field to define the bucket name. The `metadata.name` field only supports a subset of the supported character set. When specified, this field overrides `metadata.name`. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Couchbase Memcached Bucket\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json new file mode 100644 index 00000000000..f562ef2b954 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Migration Replication", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseMigrationReplication", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"The CouchbaseScopeMigration resource represents the use of the special migration mapping within XDCR to take a filtered list from the default scope and collection of the source bucket, replicate it to named scopes and collections within the target bucket. The bucket-to-bucket replication cannot duplicate any used by the CouchbaseReplication resource, as these two types of replication are mutually exclusive between buckets. https://docs.couchbase.com/server/current/learn/clusters-and-availability/xdcr-with-scopes-and-collections.html#migration\",\n \"properties\": {\n \"migrationMapping\": {\n \"description\": \"The migration mappings to use, should never be empty as that is just an implicit bucket-to-bucket replication then.\",\n \"properties\": {\n \"mappings\": {\n \"description\": \"The migration mappings to use, should never be empty as that is just an implicit bucket-to-bucket replication then.\",\n \"items\": {\n \"description\": \"Indicates whether this is using migration mapping or not. This is only valid when using the default scope/collection.\",\n \"properties\": {\n \"filter\": {\n \"default\": \"_default._default\",\n \"description\": \"A filter to select from the source default scope and collection. Defaults to select everything in the default scope and collection.\",\n \"type\": \"string\"\n },\n \"targetKeyspace\": {\n \"description\": \"The destination of our migration, must be a scope and collection.\",\n \"properties\": {\n \"collection\": {\n \"description\": \"The optional collection within the scope. May be empty to just work at scope level.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n },\n \"scope\": {\n \"description\": \"The scope to use.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"scope\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetKeyspace\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"mappings\"\n ],\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"CouchbaseReplicationSpec allows configuration of an XDCR replication.\",\n \"properties\": {\n \"bucket\": {\n \"description\": \"Bucket is the source bucket to replicate from. This refers to the Couchbase bucket name, not the resource name of the bucket. A bucket with this name must be defined on this cluster. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n },\n \"compressionType\": {\n \"default\": \"Auto\",\n \"description\": \"CompressionType is the type of compression to apply to the replication. When None, no compression will be applied to documents as they are transferred between clusters. When Auto, Couchbase server will automatically compress documents as they are transferred to reduce bandwidth requirements. This field must be one of \\\"None\\\" or \\\"Auto\\\", defaulting to \\\"Auto\\\".\",\n \"enum\": [\n \"None\",\n \"Auto\"\n ],\n \"type\": \"string\"\n },\n \"filterExpression\": {\n \"description\": \"FilterExpression allows certain documents to be filtered out of the replication.\",\n \"type\": \"string\"\n },\n \"paused\": {\n \"description\": \"Paused allows a replication to be stopped and restarted without having to restart the replication from the beginning.\",\n \"type\": \"boolean\"\n },\n \"remoteBucket\": {\n \"description\": \"RemoteBucket is the remote bucket name to synchronize to. This refers to the Couchbase bucket name, not the resource name of the bucket. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"bucket\",\n \"remoteBucket\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"migrationMapping\",\n \"spec\"\n ],\n \"title\": \"Couchbase Migration Replication\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json new file mode 100644 index 00000000000..1b9d899a81b --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Replication", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseReplication", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"The CouchbaseReplication resource represents a Couchbase-to-Couchbase, XDCR replication stream from a source bucket to a destination bucket. This provides off-site backup, migration, and disaster recovery.\",\n \"properties\": {\n \"explicitMapping\": {\n \"description\": \"The explicit mappings to use for replication which are optional. For Scopes and Collection replication support we can specify a set of implicit and explicit mappings to use. If none is specified then it is assumed to be existing bucket level replication. https://docs.couchbase.com/server/current/learn/clusters-and-availability/xdcr-with-scopes-and-collections.html#explicit-mapping\",\n \"properties\": {\n \"allowRules\": {\n \"description\": \"The list of explicit replications to carry out including any nested implicit replications: specifying a scope implicitly replicates all collections within it. There should be no duplicates, including more-specific duplicates, e.g. if you specify replication of a scope then you can only deny replication of collections within it.\",\n \"items\": {\n \"description\": \"CouchbaseAllowReplicationMapping is to cover Scope and Collection explicit replication. If a scope is defined then it implicitly allows all collections unless a more specific CouchbaseDenyReplicationMapping rule is present to block it. Once a rule is defined at scope level it should not be redefined at collection level. https://docs.couchbase.com/server/current/learn/clusters-and-availability/xdcr-with-scopes-and-collections.html\",\n \"properties\": {\n \"sourceKeyspace\": {\n \"description\": \"The source keyspace: where to replicate from. Source and target must match whether they have a collection or not, i.e. you cannot replicate from a scope to a collection.\",\n \"properties\": {\n \"collection\": {\n \"description\": \"The optional collection within the scope. May be empty to just work at scope level.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n },\n \"scope\": {\n \"description\": \"The scope to use.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"scope\"\n ],\n \"type\": \"object\"\n },\n \"targetKeyspace\": {\n \"description\": \"The target keyspace: where to replicate to. Source and target must match whether they have a collection or not, i.e. you cannot replicate from a scope to a collection.\",\n \"properties\": {\n \"collection\": {\n \"description\": \"The optional collection within the scope. May be empty to just work at scope level.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n },\n \"scope\": {\n \"description\": \"The scope to use.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"scope\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"sourceKeyspace\",\n \"targetKeyspace\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"denyRules\": {\n \"description\": \"The list of explicit replications to prevent including any nested implicit denials: specifying a scope implicitly denies all collections within it. There should be no duplicates, including more-specific duplicates, e.g. if you specify denial of replication of a scope then you can only specify replication of collections within it.\",\n \"items\": {\n \"description\": \"Provide rules to block implicit replication at scope or collection level. You may want to implicitly map all scopes or collections except a specific one (or set) so this is a better way to express that by creating rules just for those to deny.\",\n \"properties\": {\n \"sourceKeyspace\": {\n \"description\": \"The source keyspace: where to block replication from.\",\n \"properties\": {\n \"collection\": {\n \"description\": \"The optional collection within the scope. May be empty to just work at scope level.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n },\n \"scope\": {\n \"description\": \"The scope to use.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^(_default|[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250})$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"scope\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"sourceKeyspace\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"CouchbaseReplicationSpec allows configuration of an XDCR replication.\",\n \"properties\": {\n \"bucket\": {\n \"description\": \"Bucket is the source bucket to replicate from. This refers to the Couchbase bucket name, not the resource name of the bucket. A bucket with this name must be defined on this cluster. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n },\n \"compressionType\": {\n \"default\": \"Auto\",\n \"description\": \"CompressionType is the type of compression to apply to the replication. When None, no compression will be applied to documents as they are transferred between clusters. When Auto, Couchbase server will automatically compress documents as they are transferred to reduce bandwidth requirements. This field must be one of \\\"None\\\" or \\\"Auto\\\", defaulting to \\\"Auto\\\".\",\n \"enum\": [\n \"None\",\n \"Auto\"\n ],\n \"type\": \"string\"\n },\n \"filterExpression\": {\n \"description\": \"FilterExpression allows certain documents to be filtered out of the replication.\",\n \"type\": \"string\"\n },\n \"paused\": {\n \"description\": \"Paused allows a replication to be stopped and restarted without having to restart the replication from the beginning.\",\n \"type\": \"boolean\"\n },\n \"remoteBucket\": {\n \"description\": \"RemoteBucket is the remote bucket name to synchronize to. This refers to the Couchbase bucket name, not the resource name of the bucket. Legal bucket names have a maximum length of 100 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"-_%\\\\.\\\".\",\n \"maxLength\": 100,\n \"pattern\": \"^[a-zA-Z0-9-_%\\\\.]{1,100}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"bucket\",\n \"remoteBucket\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Replication\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json new file mode 100644 index 00000000000..773fd69f104 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Role Binding", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseRoleBinding", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseRoleBinding allows association of Couchbase users with groups.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CouchbaseRoleBindingSpec defines the group of subjects i.e. users, and the role i.e. group they are a member of.\",\n \"properties\": {\n \"roleRef\": {\n \"description\": \"CouchbaseGroup being bound to subjects.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of role to use for binding.\",\n \"enum\": [\n \"CouchbaseGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of role resource to use for binding.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"subjects\": {\n \"description\": \"List of users to bind a role to.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"description\": \"Couchbase user/group kind.\",\n \"enum\": [\n \"CouchbaseUser\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of Couchbase user resource.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"roleRef\",\n \"subjects\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Role Binding\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json new file mode 100644 index 00000000000..616c4955d27 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Scope", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseScope", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseScope represents a logical unit of data storage that sits between buckets and collections e.g. a bucket may contain multiple scopes, and a scope may contain multiple collections. At present, scopes are not nested, so provide only a single level of abstraction. Scopes provide a coarser grained basis for role-based access control (RBAC) and cross-datacenter replication (XDCR) than collections, but finer that buckets. In order to be considered by the Operator, a scope must be referenced by either a `CouchbaseBucket` or `CouchbaseEphemeralBucket` resource.\",\n \"properties\": {\n \"spec\": {\n \"default\": {},\n \"description\": \"Spec defines the desired state of the resource.\",\n \"properties\": {\n \"collections\": {\n \"description\": \"Collections defines how to collate collections included in this scope or scope group. Any of the provided methods may be used to collate a set of collections to manage. Collated collections must have unique names, otherwise it is considered ambiguous, and an error condition.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed indicates whether collections within this scope are managed. If not then you can dynamically create and delete collections with the Couchbase UI or SDKs.\",\n \"type\": \"boolean\"\n },\n \"preserveDefaultCollection\": {\n \"description\": \"PreserveDefaultCollection indicates whether the Operator should manage the default collection within the default scope. The default collection can be deleted, but can not be recreated by Couchbase Server. By setting this field to `true`, the Operator will implicitly manage the default collection within the default scope. The default collection cannot be modified and will have no document time-to-live (TTL). When set to `false`, the operator will not manage the default collection, which will be deleted and cannot be used or recreated.\",\n \"type\": \"boolean\"\n },\n \"resources\": {\n \"description\": \"Resources is an explicit list of named resources that will be considered for inclusion in this scope or scopes. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseCollection\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A scope can only reference `CouchbaseCollection` and `CouchbaseCollectionGroup` resource kinds. This field defaults to `CouchbaseCollection` if not specified.\",\n \"enum\": [\n \"CouchbaseCollection\",\n \"CouchbaseCollectionGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced. Legal collection names have a maximum length of 251 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"_-%\\\".\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this scope or scopes. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"defaultScope\": {\n \"description\": \"DefaultScope indicates whether this resource represents the default scope for a bucket. When set to `true`, this allows the user to refer to and manage collections within the default scope. When not defined, the Operator will implicitly manage the default scope as the default scope can not be deleted from Couchbase Server. The Operator defined default scope will also have the `persistDefaultCollection` flag set to `true`. Only one default scope is permitted to be contained in a bucket.\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Name specifies the name of the scope. By default, the metadata.name is used to define the scope name, however, due to the limited character set, this field can be used to override the default and provide the full functionality. Additionally the `metadata.name` field is a DNS label, and thus limited to 63 characters, this field must be used if the name is longer than this limit. Scope names must be 1-251 characters in length, contain only [a-zA-Z0-9_-%] and not start with either _ or %.\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Couchbase Scope\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json new file mode 100644 index 00000000000..58fb5ef9fe6 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase Scope Group", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseScopeGroup", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseScopeGroup represents a logical unit of data storage that sits between buckets and collections e.g. a bucket may contain multiple scopes, and a scope may contain multiple collections. At present, scopes are not nested, so provide only a single level of abstraction. Scopes provide a coarser grained basis for role-based access control (RBAC) and cross-datacenter replication (XDCR) than collections, but finer that buckets. In order to be considered by the Operator, a scope must be referenced by either a `CouchbaseBucket` or `CouchbaseEphemeralBucket` resource. Unlike `CouchbaseScope` resources, scope groups represents multiple scopes, with the same common set of collections, to be expressed as a single resource, minimizing required configuration and Kubernetes API traffic. It also forms the basis of Couchbase RBAC security boundaries.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec defines the desired state of the resource.\",\n \"properties\": {\n \"collections\": {\n \"description\": \"Collections defines how to collate collections included in this scope or scope group. Any of the provided methods may be used to collate a set of collections to manage. Collated collections must have unique names, otherwise it is considered ambiguous, and an error condition.\",\n \"properties\": {\n \"managed\": {\n \"description\": \"Managed indicates whether collections within this scope are managed. If not then you can dynamically create and delete collections with the Couchbase UI or SDKs.\",\n \"type\": \"boolean\"\n },\n \"preserveDefaultCollection\": {\n \"description\": \"PreserveDefaultCollection indicates whether the Operator should manage the default collection within the default scope. The default collection can be deleted, but can not be recreated by Couchbase Server. By setting this field to `true`, the Operator will implicitly manage the default collection within the default scope. The default collection cannot be modified and will have no document time-to-live (TTL). When set to `false`, the operator will not manage the default collection, which will be deleted and cannot be used or recreated.\",\n \"type\": \"boolean\"\n },\n \"resources\": {\n \"description\": \"Resources is an explicit list of named resources that will be considered for inclusion in this scope or scopes. If a resource reference doesn't match a resource, then no error conditions are raised due to undefined resource creation ordering and eventual consistency.\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"default\": \"CouchbaseCollection\",\n \"description\": \"Kind indicates the kind of resource that is being referenced. A scope can only reference `CouchbaseCollection` and `CouchbaseCollectionGroup` resource kinds. This field defaults to `CouchbaseCollection` if not specified.\",\n \"enum\": [\n \"CouchbaseCollection\",\n \"CouchbaseCollectionGroup\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the Kubernetes resource name that is being referenced. Legal collection names have a maximum length of 251 characters and may be composed of any character from \\\"a-z\\\", \\\"A-Z\\\", \\\"0-9\\\" and \\\"_-%\\\".\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector allows resources to be implicitly considered for inclusion in this scope or scopes. More info: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#labelselector-v1-meta\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"names\": {\n \"description\": \"Names specifies the names of the scopes. Unlike CouchbaseScope, which specifies a single scope, a scope group specifies multiple, and the scope group must specify at least one scope name. Any scope names specified must be unique. Scope names must be 1-251 characters in length, contain only [a-zA-Z0-9_-%] and not start with either _ or %.\",\n \"items\": {\n \"description\": \"ScopeOrCollectionName is a generic type to capture a valid scope or collection name. These must consist of 1-251 characters, include only A-Z, a-z, 0-9, -, _ or %, and must not start with _ (which is an internal marker) or % (which is probably an escape character in language X).\",\n \"maxLength\": 251,\n \"minLength\": 1,\n \"pattern\": \"^[a-zA-Z0-9\\\\-][a-zA-Z0-9\\\\-%_]{0,250}$\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n }\n },\n \"required\": [\n \"names\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase Scope Group\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json new file mode 100644 index 00000000000..5328fbfe87d --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Couchbase User", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "component": { + "kind": "CouchbaseUser", + "version": "couchbase.com/v2", + "schema": "{\n \"description\": \"CouchbaseUser allows the automation of Couchbase user management.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CouchbaseUserSpec allows the specification of Couchbase user configuration.\",\n \"properties\": {\n \"authDomain\": {\n \"description\": \"The domain which provides user authentication.\",\n \"enum\": [\n \"local\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"authSecret\": {\n \"description\": \"Name of Kubernetes secret with password for Couchbase domain.\",\n \"type\": \"string\"\n },\n \"fullName\": {\n \"description\": \"Full Name of Couchbase user.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"authDomain\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Couchbase User\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/model.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/model.json new file mode 100644 index 00000000000..57f6b36a036 --- /dev/null +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/model.json @@ -0,0 +1,37 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "couchbase-operator", + "displayName": "Couchbase Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "App Definition and Development", + "metadata": null + }, + "subCategory": "Database", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + }, + "model": { + "version": "2.64.0" + }, + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json index dcd8f42941f..ad0841c7d6f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json index bd6ebe526b9..256b55fa7aa 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json index 8680ac9cc9e..490c9033d3b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json index 6170f967b59..a4711249790 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json index fe6ee2aca14..48e4aeb4375 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json index 16ecf8da2ea..58a6b84673f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json index 0be1178a06d..ea916581287 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json index 673fbddc790..2aa54dd2098 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json index 42eb165b63a..a2904c6eca3 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json index 36e1ebb0ac9..68915a183e0 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json index db4298d1d34..b760915e573 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json index bad6778ae3f..446caaecb88 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json index 63b86529cfd..f206eaa8e55 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json index f4b072de5f7..9f8cd3698ce 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json index aeda8250cea..0c8935d7e80 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json index 3cae7afde39..1d0c041fcfa 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json index 56e47778d24..d4a76ebf569 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json index 29747724b19..7f08f35bf6b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json index a6eb84d7ba3..826e2d78683 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json index 0ac12ed649a..1a23f8bba53 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json index ca0d96eac2a..74aaced0080 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json index 680270e3ae7..f0c24f418f7 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json index 435220f10c1..6e3bf240665 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json index e9508f8422a..546135ffb56 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json index cb0f53deb7e..c54bf58308c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json index 83721f16bf1..441c0c2bde7 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json index a60f6f0d5f6..070ab2db88a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json index 0f00858123b..ec31538eaf0 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json index 0a7d8a61fb5..d9b38724268 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json index ba40d5cc2d8..a1e5e189c61 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json index 425e9a3eb20..576f330d2e1 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json index b25e4dbbf7a..2ddcf2f5da6 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json index f4c156da79b..675eb99b2ff 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json index afb14c779d9..eff64a9ac41 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json index cc9076403c1..919ddd840ed 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json index ae098522cf1..36402ac4d9f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json index 6533a5ad9a4..67169eb5cbf 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json index 8a8ad3ddfca..55e22c42042 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json index d782aeff1c3..8eef9d0289b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json index 43ea2024225..b62d171066c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json index 1d65b252d05..89d19dc7f80 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json index a6f9ef02bea..09e3f64eab3 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json index 8fa00782783..8e1bc04adf8 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json index ccde49b4353..ae50a74e0c9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json index bd20856e00a..dbd13073b08 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json index 1305ef3e785..9049b396c6c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json index 606c481eb01..84a2eb2e859 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json index f3b453b17db..d29a5ca1074 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json index f43eb993190..92e1726255d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json index 8a394579eca..2c247423883 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json index 473596f6899..2e8bc40f401 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json index 4fa0009bd0b..b9a1983969d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json index bb931b7552c..2305e95953d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json index 3d207b704e5..13f567f7793 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json index 99ceb58e53e..d8ca8977478 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json index dc4b3941a62..58d6f6a4c20 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json index ed5b4569b6a..0eedf8d1c49 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json index f2091a3c25e..0bb4454955c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json index 9ab6b0c0d1c..5900aebebb8 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json index 1f21ce8f5a8..c7943ea0306 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json index 2458ca89153..6ef85051eb9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json index a372437a199..a273b805e2d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json index acbc3e59631..5c4e72cfe43 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json index 429e5b8977b..37c3a381ec8 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json index 39911461f6c..2ae9ac32546 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json index 5932c2fc9c4..83017d10d88 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json index 8574869c952..12a6fb2516e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json index 2db1d4ebacc..8f456584001 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json index 44e638f3714..00fe6f0dc79 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json index 8aecc541822..faaf755ec16 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json index dba276a2e4a..631125fab8a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json index b22a031ba36..9829d015ebf 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json index 3bd3dd81bd8..f6bf0d0a251 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json index 9a5f762f7ba..cc2383d144d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json index cc69ad060bd..1183dfd482b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json index c47f583fd32..c666b0d525c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json index 6ec8446794b..17fd71f0640 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json index 3fba6819371..280c5fd3f53 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json index 1de900af7a3..4e2e2d82067 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json index 0744666c333..c79e9b78156 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json index eda680c4575..2dbeb6456c7 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json index 92e7bdf29e9..027bbd87194 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json index fd496e982af..d05af9d1424 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json index 435edbfde56..1cc69082f57 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json index 8ff70f5aac7..d46f9d2cb31 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json index a058bb80f43..385a1f90019 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json index 6d80cc55b1f..2e1d6cd993e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json index 65fd01e50c4..c55731bbc9b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json index 09c602c30b9..039a92ca13e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json index e0324a6e38f..ad42b4bf22d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json index 394c4f94c22..caa65ff84a3 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json index fd37e67f09d..e841d635d94 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "circle", + "shape": "round-rectang", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json index 73438265a4a..a26b3ac47dd 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CompositeResourceDefinition", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json index 688ff73f997..9924f299e5d 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Composition", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json index 12da62a62e2..6585aebb1b0 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Configuration", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json index c60e228b64a..913a862fc6e 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ConfigurationRevision", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json index a4aad9c5017..fd55355dbd8 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesApplication", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json index 7d860f3f85f..bc5181d1f27 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesApplicationResource", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json index 4101b1ee20e..a530293a7b7 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesTarget", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json index d155f005df1..d20a44ef80c 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Provider", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json index 16e3fd21769..f2507f02ba0 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ProviderRevision", diff --git a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json index 71058ad5aee..946e776891d 100644 --- a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json +++ b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "SecretProviderClass", diff --git a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json index b10e49b8115..1a5e21e54b8 100644 --- a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json +++ b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "SecretProviderClassPodStatus", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json index 30ecb679d56..08b379a1794 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Component", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json index cb36194862f..483bb92e774 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Configuration", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json index 8db63b6f036..47b96d646f5 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPEndpoint", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json index 98a0006b943..fd8b259b2f9 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Resiliency", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json index c8d8b7f942b..bea317bf2da 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Subscription", diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json index a94f98d3d06..27183214b97 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json index 6b33b43841b..d5991f1b5fe 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json index 5a24445f817..0c3341f0f2d 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json index 4413421ce26..17d07b1c250 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json index e45dbab82cc..7941e6f9595 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json index 131966f88ef..a9dd4bd5ca0 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json index 28f3d4dc0ac..c0644d24c0d 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json index 5ad4d795314..4baf3639fff 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json index 61060097c0c..cce336801c5 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json index a3a060b3677..9cd66adb29d 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json index 30a19fda2f2..c3ebd898e4b 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json index 80460753d36..c8701e0d50a 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json index c6b0fd53514..035ff2c0fca 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json index 3d4a77d5749..d4e11b6e840 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json index 723b0d775bd..8c06e2301e2 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" }, "component": { "kind": "DaskCluster", diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json index 6e3e08071bb..904e11970a5 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json index 24b13c62a9b..37c0d3d5545 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json index a95d48157e7..44e0698e0a5 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json index c838ce6b4bc..717ac8ef637 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json index 9fafe3bb4fd..eb8b657be19 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json index 1e3c5ce249f..a361e0d45fd 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json index 4e2318175cb..06c163a84ac 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json index 226957815f6..4cf2ac5ab6d 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json index 7b3aa06b1fa..575e6ff111b 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json b/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json index b298d748e80..ff0cf239b54 100644 --- a/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json +++ b/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Dast", diff --git a/server/meshmodel/datadog-operator/1.7.1/v1.0.0/model.json b/server/meshmodel/datadog-operator/1.7.1/v1.0.0/model.json new file mode 100644 index 00000000000..4e53a2200d1 --- /dev/null +++ b/server/meshmodel/datadog-operator/1.7.1/v1.0.0/model.json @@ -0,0 +1,37 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "datadog-operator", + "displayName": "Datadog Operator", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.7.1" + }, + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json index 5cedf30794e..8b363d5515e 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json index b317d6dcaaf..98d36dc985e 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json index 0900af6e5ad..e956f25afcd 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json index 7315ab33d62..2de034be418 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json index fcf28a7aa34..7a0f643ebab 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json index 8dd05759e29..08a83182e3f 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json index 218a401123f..4a10b81a318 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json index bf4d9dac419..b33eb882108 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json index e260c538345..2572a78f1ff 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json index d0cbfb39db5..1cdfb398597 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json index 8fc37c80fe5..744d7cc9ac9 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json index e568fbe3521..8c739e492b2 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json index 71998d8ffda..a3121270363 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json index e3ed7da1344..7f327c7d61c 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json index bfe8f4fcfdc..0e34761e86f 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "InferenceGraph", diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json index 4d0337c8c27..6e4d4a5a9bd 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json index 935167990f3..868838285ff 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json index ef0ea69022d..84d6f57d77f 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", - "shape": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json index a2e6313c156..1890368ec79 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Certificate", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json index 40d95d40169..419aca1c5c0 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "CertificateRequest", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json index 7f1befa2948..63b52268dab 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Challenge", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json index eca826b23ca..0246f5cf396 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ClusterIssuer", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json index b85072363da..57439c5dd28 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Issuer", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json index ff03712cccc..4892e2fd1e3 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Order", diff --git a/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json b/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json index 03d6b6f4aad..b2cd7911a9f 100644 --- a/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json +++ b/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Installer", diff --git a/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json b/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json index 9ab5b475279..4511d93ea16 100644 --- a/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json +++ b/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Ditto", diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json index ca69bc11c50..ddc46cf3b41 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json index fddb149f0fc..bf76c155207 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json index 892b8ba9ddd..a3ae2e6f5a3 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json index a2a4708b0ec..318f4b1542e 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json index b302288239c..127c9a336ac 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json index 9fa64de3fb9..6beef718e77 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json index 97077fc3cd4..8cab46a79a0 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json index 96f1b3f25d6..5bcaa1af60b 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json index 10d298d1044..c42b9565adf 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json index 234e5f76d22..cf82137aa14 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json index 1c761880e77..d2f4bc7b1cb 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json index ade394a6513..f1726929a45 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json index 8a31e5bb61c..2d83df3f1bd 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json index 927b3c8756b..8c8f9a76088 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json index b97c963b148..12a33baaf8c 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json index b2cf6aafbf3..4e446072d1d 100644 --- a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json +++ b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json index bbda28c014c..8a6f2c49c3b 100644 --- a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json +++ b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json b/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json index b8e0f69b905..6d151b46be0 100644 --- a/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json +++ b/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "CheCluster", diff --git a/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json b/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json index fa2c5e8ede0..f2157aec21c 100644 --- a/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json +++ b/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ArgoApplication", diff --git a/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json b/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json index 5078961d17f..134a366274e 100644 --- a/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json +++ b/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "EDPComponent", diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json index ca80bb791f7..e5eae083c3c 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json index a8b927b1c32..b044c459442 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json index ac4fb9c810b..cf2ef143f0e 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json index 1d7c99e57bc..fbcc460c2bb 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json index 1a2cad440bf..b8b8022e550 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json index 090f4437f9a..bfa0059bf29 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json index eea28da8c2a..40064f53880 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json index 6a10cae1bf1..436f25d7438 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json index a58edbd6ede..eb73d6ec9c8 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json index 748114d1cf8..db20f0bc879 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json index efff3cca8b7..50cb1657520 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json index 116ce1524fa..4f5f52f2927 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json index 93b61c311d1..986b5bc9d44 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json index cea698b8e43..b213c1c678c 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json index 6efede1c61f..79ec89cc225 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json index 2e24ebeb7dc..ecbe6d00c3c 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json index 56aab31ea17..a53a07add4f 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "QuickLink", diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json index a8045081fe4..1971b11e027 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json index c6c46cf1f9d..957ab517be5 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json index 0f20f485e20..2ceb9f13130 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json index acb503dea51..298df52c9c0 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json index fd89e1042c0..89cf553409c 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json index b02327aa028..3b6e1a2f975 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json index 8d1b7ddab1a..2640ef08efa 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json index 31f94d98808..cda8eb73d87 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json index 2fbd648274f..2fc4c8c4fa0 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json index 8055973b38e..e817c7249a4 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json index 050defe3eb6..33631d1e0cb 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json index 72c436f918c..2c0afb61dd4 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json index c9c4126dc77..ce65846fd77 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json index 78148c04599..dd75b006fdc 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json index 274f71cda2e..bcaddfc8dfc 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json index c7626ef079a..929bb4e7f30 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json index 43fcc37bab0..8b7fadd0c7b 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json index 0cd5266b54e..e298fc50c2e 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json index cd65a345300..cbb6f02e83d 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json index 98470edae7e..fc848836232 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json index bc5afbd6ccf..a1699761bdb 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json index d47a04bcb35..b56a2be6088 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json index c700decbdc8..f15a5f4ead0 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json index 85ddf6a3a27..4a5e047e759 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json index 984d683fee9..eb2c7b249df 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json index 2e3d06ad987..3cda2d61ac4 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json index 774fa4310df..d1addd7b936 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json index cbb107da5de..33574c10f80 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json index a4e14c506be..ad3ed86a6da 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json index 362d87eb38b..4d7b04e9c76 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json index fee1376a107..26598416a1a 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json index aac74a2de45..d472ddbabef 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json index de370ea816f..47c829771de 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json index 1c370bd9185..f54547f89f1 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json index 69011decc81..5f30bc5dc4c 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json index d54406731d2..2b36ce8d1a3 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json index 47653aeb8d3..829b3f34818 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "MongoDBMulti", diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json index 54097a3aede..d66af66e9cf 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "MongoDBMultiCluster", diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json index 4533ac64c8f..d0864af0c3e 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "MongoDBOpsManager", diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json index e57c657ec09..bfab5c73d6e 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", + "svgComplete": "", + "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "MongoDBUser", diff --git a/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json b/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json index a9894ff72b3..f63878c5f22 100644 --- a/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json +++ b/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "", + "svgComplete": "", + "svgWhite": "" }, "component": { "kind": "App", diff --git a/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json b/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json index fb64e1e5a44..529ea5827ac 100644 --- a/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json +++ b/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "", + "svgComplete": "", + "svgWhite": "" }, "component": { "kind": "AppChart", diff --git a/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json b/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json index 121aa611b56..eacc644d970 100644 --- a/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json +++ b/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "circle", - "secondaryColor": "#00B39F", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "#00D3A9", - "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" + "svgColor": "", + "svgComplete": "", + "svgWhite": "" }, "component": { "kind": "Service", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json index bada81ee8e3..6fac23c7625 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdBackup", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json index 3e2550c1340..82640133dbf 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdBackupSchedule", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json index 31b4f9b5781..b5e2e5b8f38 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdCluster", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json index f86d9dc1299..3d3860fd31d 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdPeer", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json index 2678e6c7a24..3b86b27daf1 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdRestore", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json index fe1de67a783..6be5067cd18 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "AWSChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json index 43a335171f4..90692c91b14 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "AzureChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json index 45ebf77c96e..5a096e0be7a 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "DNSChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json index 486d31639e0..1e847bd01bf 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "GCPChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json index d323d27ebb9..043c24ea0b0 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "HTTPChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json index d85e98fc573..35a8c4527cb 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "IOChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json index b48eb86751e..16be520be4c 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "JVMChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json index 534378fed3f..fabf8bdf8eb 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "KernelChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json index e5e06ad51d4..3ef1a3e0c52 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "NetworkChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json index 9edd882171b..5527b468d4a 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PhysicalMachine", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json index ed1fbc4685b..ac81954ad4c 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PhysicalMachineChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json index 9709f17fbf2..627c20055fb 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PodChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json index db7a710e0f6..e40417a0087 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PodHttpChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json index 6c1f001228f..34af7d8a8d5 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PodIOChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json index c85a997eb77..2b47e6f65df 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "PodNetworkChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json index 2515e96c9a7..4a65d0d2503 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Schedule", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json index ecb8fdc6e87..652763e5aa0 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "StatusCheck", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json index ddade61bea9..248e41bb54a 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "StressChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json index b436c8c79fb..f84851a9ef8 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "TimeChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json index 47e1a453f3a..1ded559af4a 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "Workflow", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json index 81c5e8d3163..003a68195a0 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "WorkflowNode", diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json index 4ef18cb93a6..a92f90ec640 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json index 6616ee0ed68..8aa06a4d908 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json index 6c9da38d9fe..2447fe7c323 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json index e043cd5d8e6..2e4f80e0594 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json index 0022fc52bc8..be11b9f3b50 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json index 409aa0d7a97..cf64d0c56a6 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json index f8498af5164..8d6acf05759 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json index abcec810d46..30babd64e3b 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json index fc6a1a91f2f..a84b5b3523d 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json b/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json index 4e857e88884..60a8eb35bc4 100644 --- a/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json +++ b/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#7BB09F\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#FFF\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json b/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json index d98b251ca6c..2817483d5c4 100644 --- a/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json +++ b/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#7BB09F\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#FFF\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json b/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json index eb3d39882bc..ca860e9a578 100644 --- a/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json +++ b/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#7BB09F\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#FFF\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json index 044570353f2..c2144a428dc 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json index 5a3ade97207..75648c9c38e 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json index cca347b970c..328d8ee9be3 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json index 54f0469ed60..5b7b3cf5859 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json index 753eb937924..8aa13cde570 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json index d0d97b30cf8..305380fa145 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterFilter", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json index e9a2b1032c2..468b5cd7cb1 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterFluentBitConfig", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json index 8b30d0a3994..cdbbbc19c63 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterFluentdConfig", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json index b4878e2c552..c6159f46cb2 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterInput", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json index d9b62da1cf5..138efd19d25 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterOutput", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json index cdd316c3930..735e6b2e65e 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterParser", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json index 9ccce84ac76..33c6a359fad 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Filter", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json index 4a1b0908972..b0c76e700a7 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FluentBit", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json index 642d631cff2..467a15a870d 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Fluentd", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json index 932938d2ccf..3690e07ac09 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FluentdConfig", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json index 43384b24d1b..48a73775e91 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Output", diff --git a/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json b/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json index d05696a7c19..51084f96834 100644 --- a/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json +++ b/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#3695cb", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003cg transform=\"translate(-657.1 -27.496)\"\u003e\u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\"/\u003e\u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#i)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#j)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#k)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#l)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#m)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#n)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#o)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#p)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#q)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#r)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#s)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#t)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#u)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003cg\u003e\u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#v)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#w)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#x)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#y)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#z)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#A)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#B)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003cg transform=\"translate(-657.1 -27.496)\"\u003e\u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\"/\u003e\u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#i)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#j)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#k)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#l)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#m)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#n)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#o)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#p)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#q)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#r)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#s)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#t)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#u)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003cg\u003e\u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#v)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#w)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#x)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#y)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#z)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#A)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#B)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FluentdConfig", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json index 3e7900724a5..377cb7e0fd2 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "DaskAutoscaler", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json index add7729fa48..ae310bbb924 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "DaskCluster", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json index b93874f1ab9..96dfadefe01 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "DaskJob", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json index 582e15d31ed..c655f58c2e0 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "DaskWorkerGroup", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json index d3999cf1eb4..26c613caf6c 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json index f2eb2f11b5e..7441f166adc 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json index 32f6760b3ce..e6b4dd647e4 100644 --- a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json +++ b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json index 9aea1c75473..ef288e37469 100644 --- a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json +++ b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json index 2786ba51683..28fabf4e915 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json index 2bd80a1c630..21e45648044 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json index 84d5df62687..99b50871558 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json index e350b61fc31..e57db95f4ed 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json index 579509142e8..3e57578e43e 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json index c37cefb9771..789b7f64747 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json index 6fb54ba442e..8a9270e9d93 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json index 2ffd8d446f9..3bf409c1224 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json index b38c2ef5a75..236d377449c 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json index 0d3d590cb9c..70efce96caf 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json index bce30e451f0..77edeea8ea3 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json index 21daeb5247e..69c942c1c06 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json index f18e783211c..64c398d366f 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json index 1d0b6361ef1..5bd8cdaaa24 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json index acd79254c28..10ce9963378 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json index 7a8c1d462b8..a68befbabbe 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json index 4c13b4da971..4f362c07946 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json index 428191da8d1..0507332c73d 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json b/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json index 35b34fffb6d..a780c56eb13 100644 --- a/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json +++ b/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json index e9a46a054f6..e7bded2f2c0 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json index e4034e71104..2f868e73c00 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json index 6519da3ecda..13a64a3921b 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json index d3090e9f9c6..09b3acf5a2a 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json index 85b99725f6e..ece22a47ded 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json index 996ad6d12e2..b22e1b4ed1c 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json index e36f6cc1ac2..d158da3a9b5 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", - "secondaryColor": "", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "", + "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "ServersTransportTCP", diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json index b1bca32f413..4b6e82b603e 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json index dfc1caddbad..39bab60bb3c 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json index 5f28618979c..c6b0b3d824f 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json b/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json index aa4d41541eb..f5a124deabc 100644 --- a/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json +++ b/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json index b7595ccc3e8..6b6eb8d9f74 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json index 9049d8cfd3d..33163177772 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json index d6739a5a4ac..38c0e5b34d2 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json index 321cf34d93a..7d883575672 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json index 082111fbf0e..a7a010d8999 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json index 7ea40463d0f..85093488650 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json index 5639d4f1140..28a9d4aa72b 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json index 448b621396f..6254ed5f151 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json index 1a2a86c0d22..0a86fb75219 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json index e557ea731a2..2bddc22adf8 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json index 803424dace4..67a20ac1180 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json index e34cc20cd4e..de767d63426 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json index 4ca1e6f2455..c3c876818ac 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json index 4ec0d496400..b7fa3926981 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json index 91b263a84b0..9d4f7cb1693 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json b/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json index b3c50227076..12513ab4c9c 100644 --- a/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json +++ b/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json b/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json index 7058e73c965..da55add16ca 100644 --- a/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json +++ b/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json index f9f05aff090..ab28b095d29 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Assign", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json index 11998239f8b..c978ee7f8fe 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AssignImage", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json index db4c13b5de3..92f5b9e0f1f 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AssignMetadata", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json index 1950371c454..e1fc282b451 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#566366", + "secondaryColor": "#9BA8AB", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json index b1bc6a68d07..f5f0c0f2014 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#566366", + "secondaryColor": "#9BA8AB", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json index 08666774afe..54ba87d35e6 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ConstraintTemplate", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json index 9dd30f02a52..72e0be67d40 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#566366", + "secondaryColor": "#9BA8AB", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json index fa4d1a20e21..9346b3c5836 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ExpansionTemplate", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json index 6543f03fa36..34268af3515 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ExpansionTemplatePodStatus", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json index 4a51dee1567..834b7ec2c0b 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModifySet", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json index b449e418591..f8f71186680 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MutatorPodStatus", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json index 592638e5ce1..89f2621e4b7 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Provider", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json index 252610099e1..1eede8bc88d 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "#566366", + "secondaryColor": "#9BA8AB", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json b/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json index d2f5a05a169..758db10e236 100644 --- a/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json +++ b/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,8 +54,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json index 792033b02d2..d5cc08aa387 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Gerrit", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json index d9a8c9ba9b3..7dd9de4d205 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GerritGroup", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json index aa1051cead3..0bee0daf61b 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GerritGroupMember", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json index c8d652a792a..8790c5ce0b6 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GerritMergeRequest", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json index b7f9772e5eb..53773192439 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GerritProject", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json index cca3474f5c9..f47256fa973 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GerritProjectAccess", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json index 8a519918091..58f2835d694 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GerritReplicationConfig", diff --git a/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json b/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json index 1c6a0718ae6..2a6a9b35abd 100644 --- a/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json +++ b/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json index 82279ee935d..1d5f49e320c 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json index b4d539783f1..f7eaabbd066 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json index 41f0abfb914..5c9046e7e1b 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json index 88a0a818804..f3d176b468c 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json index ab7b25afa6e..31fd6a5c3c7 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json b/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json index cf1e7983965..f193bd4976a 100644 --- a/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json +++ b/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M282.829 170.728L282.559 170.038L256.419 101.818C255.888 100.481 254.946 99.347 253.729 98.5784C252.512 97.8228 251.092 97.4588 249.662 97.5357C248.231 97.6126 246.859 98.1266 245.729 99.0084C244.613 99.9154 243.803 101.145 243.409 102.528L225.759 156.528H154.289L136.639 102.528C136.257 101.137 135.445 99.9017 134.319 98.9984C133.19 98.1166 131.818 97.6026 130.387 97.5257C128.956 97.4488 127.537 97.8128 126.319 98.5684C125.106 99.3401 124.165 100.473 123.629 101.808L97.4394 169.998L97.1794 170.688C93.4164 180.52 92.952 191.309 95.856 201.428C98.7601 211.547 104.875 220.448 113.279 226.788L113.369 226.858L113.609 227.028L153.429 256.848L173.129 271.758L185.129 280.818C186.533 281.884 188.247 282.461 190.009 282.461C191.772 282.461 193.486 281.884 194.889 280.818L206.889 271.758L226.589 256.848L266.649 226.848L266.749 226.768C275.135 220.427 281.236 211.535 284.135 201.43C287.035 191.325 286.577 180.551 282.829 170.728Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M282.83 170.729L282.56 170.039C269.823 172.653 257.82 178.049 247.41 185.839L190 229.249C209.55 244.039 226.57 256.889 226.57 256.889L266.63 226.889L266.73 226.809C275.127 220.468 281.238 211.571 284.141 201.457C287.045 191.343 286.585 180.559 282.83 170.729Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M153.43 256.89L173.13 271.8L185.13 280.86C186.533 281.926 188.247 282.503 190.01 282.503C191.772 282.503 193.486 281.926 194.89 280.86L206.89 271.8L226.59 256.89C226.59 256.89 209.55 244 190 229.25C170.45 244 153.43 256.89 153.43 256.89Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M132.579 185.84C122.177 178.034 110.177 172.624 97.4394 170L97.1794 170.69C93.4164 180.522 92.952 191.311 95.856 201.43C98.7601 211.549 104.875 220.45 113.279 226.79L113.369 226.86L113.609 227.03L153.429 256.85C153.429 256.85 170.429 244 189.999 229.21L132.579 185.84Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 380 380\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#e24329;}.cls-2{fill:#fc6d26;}.cls-3{fill:#fca326;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"LOGO\"\u003e\u003cpath class=\"cls-1\" d=\"M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M282.83,170.73l-.27-.69a88.3,88.3,0,0,0-35.15,15.8L190,229.25c19.55,14.79,36.57,27.64,36.57,27.64l40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M153.43,256.89l19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91S209.55,244,190,229.25C170.45,244,153.43,256.89,153.43,256.89Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M132.58,185.84A88.19,88.19,0,0,0,97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82s17-12.85,36.57-27.64Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M282.829 170.728L282.559 170.038L256.419 101.818C255.888 100.481 254.946 99.347 253.729 98.5784C252.512 97.8228 251.092 97.4588 249.662 97.5357C248.231 97.6126 246.859 98.1266 245.729 99.0084C244.613 99.9154 243.803 101.145 243.409 102.528L225.759 156.528H154.289L136.639 102.528C136.257 101.137 135.445 99.9017 134.319 98.9984C133.19 98.1166 131.818 97.6026 130.387 97.5257C128.956 97.4488 127.537 97.8128 126.319 98.5684C125.106 99.3401 124.165 100.473 123.629 101.808L97.4394 169.998L97.1794 170.688C93.4164 180.52 92.952 191.309 95.856 201.428C98.7601 211.547 104.875 220.448 113.279 226.788L113.369 226.858L113.609 227.028L153.429 256.848L173.129 271.758L185.129 280.818C186.533 281.884 188.247 282.461 190.009 282.461C191.772 282.461 193.486 281.884 194.889 280.818L206.889 271.758L226.589 256.848L266.649 226.848L266.749 226.768C275.135 220.427 281.236 211.535 284.135 201.43C287.035 191.325 286.577 180.551 282.829 170.728Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 380 380\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"LOGO\"\u003e\u003cpath class=\"cls-1\" d=\"M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Runner", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json index 1ed615b6fd7..fa02f2ca17b 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Backend", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json index 70e97d141df..2e0ab8f4401 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Defaults", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json index c9e93273f17..e31923d8c93 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Global", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json index 99e9bd0faef..1627e291b49 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json index 0f915350f12..0bb89f3bc32 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json index 52f29e23385..5f29b7176e9 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json index 3947f75b1d4..1ec5873b777 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json index 90925761bb4..15c22857ee1 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json index fc11dfe477b..19cbc932af1 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json index 1ed59095d6c..4abc344fa33 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json index e2caa2e0a75..ccca9a072de 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json index d1b426f412f..9992d0fe6bd 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json @@ -45,17 +45,15 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "#1988d9", + "secondaryColor": "#54aef0", + "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json index 31a65a66399..6beda775855 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json index dd7fd4ad982..3a246d0ea33 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json index 873464705a4..2f39c81aa60 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json index 4cdf3a5fca6..e87c21d56cf 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json index 1f0d4391819..db9ed2fa600 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json index f46d0658065..b3dc9f961fc 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json index e96d0a9b006..20e69e1ce14 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json index 36373e430d5..41d88dc9b9f 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json index 062b94c5e98..360163fa771 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json index 139bfd4e1d7..39f6ea14d52 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json index 81b456b60d7..69c7ebd3cec 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json index 9f1d8fe6fb5..c8dc523f9a6 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json index dfb5389200b..dc4d793bba7 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json index 81fa6904508..9bc6cfcd4d9 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json index 5812d44f994..c9f321ddb06 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json index c196b6bcbaa..8036775bec2 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json index 5a9365301a1..34efab522fe 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json index 0f7e372bd89..11e2054386f 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json index 7f6a5c65c00..b888f758982 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json index 9878433ae30..6fd18a76730 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json index 324c21dc3e8..1fcacf9dc04 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json index 68078fcd611..cb57990a6ee 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json index 95d090f36a0..3bfdd34b3d2 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json index 491179608ba..80b4c693fd3 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json index 4cba905b7d8..9bb315cfa67 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json index ca0de6eefc0..0ed3a2a71de 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json index 31f5a449c80..00c43722aa0 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json index 2c87cf16cbe..6b1bd8391a6 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json index 4ccb6cd83b6..746a49b2299 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json index e6af2391796..201c85cc5cf 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json index ea88a981b80..60856475b55 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json index 7e70669bd15..10e181791d1 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json index 499d1c693aa..3dfd01350b3 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json index aa9b47bd9c8..bd4d6c6c4e0 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "MatchableTcpGateway", diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json index 1037da646fb..58be1265dad 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json index 4d1ec5ad424..8850597a990 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json index 2a261058283..a5b4c62e243 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json index 329e859ea0c..acff8edc376 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json index a699bc32d11..da153424cab 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json index f70d922e59b..4d55e2b6a12 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json index c1fe8be238b..2e6cd180792 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json index 955c6dc4240..51338d98648 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json index 93f4904f6e4..79fc2a3e0e5 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json index abe79fb9cf7..b3f0b80e432 100644 --- a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json +++ b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "VerticalPodAutoscaler", diff --git a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json index d896a90835d..26e0ae89b71 100644 --- a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json +++ b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "VerticalPodAutoscalerCheckpoint", diff --git a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json index 3b04e1d0907..d4e1d5d446b 100644 --- a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json +++ b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json index 7f65aa4f11c..170ea4c48a4 100644 --- a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json +++ b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json b/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json index 25b61daf742..69969dfd691 100644 --- a/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json +++ b/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json index 97fd2d2ec18..ac5ac52e3fe 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json index 92f9429da31..50343b139c1 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json index 71b405c4d83..15de02def43 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json index 0b1526cdf83..a137cc2453f 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json new file mode 100644 index 00000000000..09a30d9414d --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Grafana", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "component": { + "kind": "Grafana", + "version": "grafana.integreatly.org/v1beta1", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"client\": {\n \"properties\": {\n \"preferIngress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"timeout\": {\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"config\": {\n \"additionalProperties\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"deployment\": {\n \"properties\": {\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"minReadySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"paused\": {\n \"type\": \"boolean\"\n },\n \"progressDeadlineSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"replicas\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"revisionHistoryLimit\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"strategy\": {\n \"properties\": {\n \"rollingUpdate\": {\n \"properties\": {\n \"maxSurge\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"template\": {\n \"properties\": {\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"properties\": {\n \"nodeAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"preference\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"items\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"type\": \"boolean\"\n },\n \"containers\": {\n \"items\": {\n \"properties\": {\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"properties\": {\n \"postStart\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"items\": {\n \"properties\": {\n \"resourceName\": {\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"appArmorProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"type\": \"string\"\n },\n \"tty\": {\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"items\": {\n \"properties\": {\n \"devicePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"devicePath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"type\": \"string\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"mountPath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"workingDir\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"properties\": {\n \"nameservers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"type\": \"boolean\"\n },\n \"ephemeralContainers\": {\n \"items\": {\n \"properties\": {\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"properties\": {\n \"postStart\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"items\": {\n \"properties\": {\n \"resourceName\": {\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"appArmorProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"type\": \"boolean\"\n },\n \"targetContainerName\": {\n \"type\": \"string\"\n },\n \"terminationMessagePath\": {\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"type\": \"string\"\n },\n \"tty\": {\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"items\": {\n \"properties\": {\n \"devicePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"devicePath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"type\": \"string\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"mountPath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"workingDir\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"items\": {\n \"properties\": {\n \"hostnames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ip\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"ip\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostIPC\": {\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"type\": \"boolean\"\n },\n \"hostUsers\": {\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"items\": {\n \"properties\": {\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"properties\": {\n \"postStart\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"items\": {\n \"properties\": {\n \"resourceName\": {\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"appArmorProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"type\": \"string\"\n },\n \"tty\": {\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"items\": {\n \"properties\": {\n \"devicePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"devicePath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"type\": \"string\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"mountPath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"workingDir\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"type\": \"string\"\n },\n \"priority\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"items\": {\n \"properties\": {\n \"conditionType\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"appArmorProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"fsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"sysctls\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"type\": \"boolean\"\n },\n \"subdomain\": {\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"items\": {\n \"properties\": {\n \"effect\": {\n \"type\": \"string\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"maxSkew\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minDomains\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeAffinityPolicy\": {\n \"type\": \"string\"\n },\n \"nodeTaintsPolicy\": {\n \"type\": \"string\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumes\": {\n \"items\": {\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"properties\": {\n \"cachingMode\": {\n \"type\": \"string\"\n },\n \"diskName\": {\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"properties\": {\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n },\n \"shareName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"properties\": {\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"properties\": {\n \"medium\": {\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"properties\": {\n \"metadata\": {\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"wwids\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"properties\": {\n \"datasetName\": {\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"revision\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"properties\": {\n \"endpoints\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"type\": \"string\"\n },\n \"iqn\": {\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"nfs\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"server\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"properties\": {\n \"claimName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"pdID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"items\": {\n \"properties\": {\n \"clusterTrustBundle\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"signerName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"properties\": {\n \"audience\": {\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"tenant\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n },\n \"volume\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"keyring\": {\n \"type\": \"string\"\n },\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"pool\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"gateway\": {\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"type\": \"string\"\n },\n \"system\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"external\": {\n \"properties\": {\n \"adminPassword\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"adminUser\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"apiKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"ingress\": {\n \"properties\": {\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"defaultBackend\": {\n \"properties\": {\n \"resource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"service\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"number\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ingressClassName\": {\n \"type\": \"string\"\n },\n \"rules\": {\n \"items\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"http\": {\n \"properties\": {\n \"paths\": {\n \"items\": {\n \"properties\": {\n \"backend\": {\n \"properties\": {\n \"resource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"service\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"number\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"pathType\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backend\",\n \"pathType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"paths\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"tls\": {\n \"items\": {\n \"properties\": {\n \"hosts\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jsonnet\": {\n \"properties\": {\n \"libraryLabelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"properties\": {\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preferences\": {\n \"properties\": {\n \"homeDashboardUid\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"route\": {\n \"properties\": {\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"alternateBackends\": {\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"host\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"properties\": {\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"targetPort\"\n ],\n \"type\": \"object\"\n },\n \"tls\": {\n \"properties\": {\n \"caCertificate\": {\n \"type\": \"string\"\n },\n \"certificate\": {\n \"type\": \"string\"\n },\n \"destinationCACertificate\": {\n \"type\": \"string\"\n },\n \"insecureEdgeTerminationPolicy\": {\n \"type\": \"string\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"termination\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"termination\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"properties\": {\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"wildcardPolicy\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"properties\": {\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"allocateLoadBalancerNodePorts\": {\n \"type\": \"boolean\"\n },\n \"clusterIP\": {\n \"type\": \"string\"\n },\n \"clusterIPs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"externalIPs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"externalName\": {\n \"type\": \"string\"\n },\n \"externalTrafficPolicy\": {\n \"type\": \"string\"\n },\n \"healthCheckNodePort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"internalTrafficPolicy\": {\n \"type\": \"string\"\n },\n \"ipFamilies\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ipFamilyPolicy\": {\n \"type\": \"string\"\n },\n \"loadBalancerClass\": {\n \"type\": \"string\"\n },\n \"loadBalancerIP\": {\n \"type\": \"string\"\n },\n \"loadBalancerSourceRanges\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"appProtocol\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"nodePort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"port\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"publishNotReadyAddresses\": {\n \"type\": \"boolean\"\n },\n \"selector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sessionAffinity\": {\n \"type\": \"string\"\n },\n \"sessionAffinityConfig\": {\n \"properties\": {\n \"clientIP\": {\n \"properties\": {\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"trafficDistribution\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"properties\": {\n \"automountServiceAccountToken\": {\n \"type\": \"boolean\"\n },\n \"imagePullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secrets\": {\n \"items\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"type\": \"string\"\n },\n \"uid\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Grafana\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json new file mode 100644 index 00000000000..6023ad23af3 --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Grafana Alert Rule Group", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "component": { + "kind": "GrafanaAlertRuleGroup", + "version": "grafana.integreatly.org/v1beta1", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"allowCrossNamespaceImport\": {\n \"type\": \"boolean\"\n },\n \"folderRef\": {\n \"type\": \"string\"\n },\n \"folderUID\": {\n \"type\": \"string\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"Value is immutable\",\n \"rule\": \"self == oldSelf\"\n }\n ]\n },\n \"interval\": {\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"resyncPeriod\": {\n \"default\": \"10m\",\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"rules\": {\n \"items\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"condition\": {\n \"type\": \"string\"\n },\n \"data\": {\n \"items\": {\n \"properties\": {\n \"datasourceUid\": {\n \"type\": \"string\"\n },\n \"model\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"queryType\": {\n \"type\": \"string\"\n },\n \"refId\": {\n \"type\": \"string\"\n },\n \"relativeTimeRange\": {\n \"properties\": {\n \"from\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"to\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"execErrState\": {\n \"enum\": [\n \"OK\",\n \"Alerting\",\n \"Error\",\n \"KeepLast\"\n ],\n \"type\": \"string\"\n },\n \"for\": {\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"isPaused\": {\n \"type\": \"boolean\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"noDataState\": {\n \"enum\": [\n \"Alerting\",\n \"NoData\",\n \"OK\",\n \"KeepLast\"\n ],\n \"type\": \"string\"\n },\n \"notificationSettings\": {\n \"properties\": {\n \"group_by\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"group_interval\": {\n \"type\": \"string\"\n },\n \"group_wait\": {\n \"type\": \"string\"\n },\n \"mute_time_intervals\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"receiver\": {\n \"type\": \"string\"\n },\n \"repeat_interval\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"receiver\"\n ],\n \"type\": \"object\"\n },\n \"title\": {\n \"example\": \"Always firing\",\n \"maxLength\": 190,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"uid\": {\n \"pattern\": \"^[a-zA-Z0-9-_]+$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"condition\",\n \"data\",\n \"execErrState\",\n \"for\",\n \"noDataState\",\n \"title\",\n \"uid\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"instanceSelector\",\n \"interval\",\n \"rules\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"Only one of FolderUID or FolderRef can be set\",\n \"rule\": \"(has(self.folderUID) \\u0026\\u0026 !(has(self.folderRef))) || (has(self.folderRef) \\u0026\\u0026 !(has(self.folderUID)))\"\n }\n ]\n }\n },\n \"title\": \"Grafana Alert Rule Group\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json new file mode 100644 index 00000000000..2efe74df1d3 --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Grafana Contact Point", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "component": { + "kind": "GrafanaContactPoint", + "version": "grafana.integreatly.org/v1beta1", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"allowCrossNamespaceImport\": {\n \"type\": \"boolean\"\n },\n \"disableResolveMessage\": {\n \"type\": \"boolean\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"Value is immutable\",\n \"rule\": \"self == oldSelf\"\n }\n ]\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"resyncPeriod\": {\n \"default\": \"10m\",\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"settings\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"alertmanager\",\n \"prometheus-alertmanager\",\n \"dingding\",\n \"discord\",\n \"email\",\n \"googlechat\",\n \"kafka\",\n \"line\",\n \"opsgenie\",\n \"pagerduty\",\n \"pushover\",\n \"sensugo\",\n \"sensu\",\n \"slack\",\n \"teams\",\n \"telegram\",\n \"threema\",\n \"victorops\",\n \"webhook\",\n \"wecom\",\n \"hipchat\",\n \"oncall\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"instanceSelector\",\n \"name\",\n \"settings\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Grafana Contact Point\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json new file mode 100644 index 00000000000..48212afda2f --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Grafana Dashboard", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "component": { + "kind": "GrafanaDashboard", + "version": "grafana.integreatly.org/v1beta1", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"allowCrossNamespaceImport\": {\n \"type\": \"boolean\"\n },\n \"configMapRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"contentCacheDuration\": {\n \"type\": \"string\"\n },\n \"datasources\": {\n \"items\": {\n \"properties\": {\n \"datasourceName\": {\n \"type\": \"string\"\n },\n \"inputName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"datasourceName\",\n \"inputName\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"folder\": {\n \"type\": \"string\"\n },\n \"grafanaCom\": {\n \"properties\": {\n \"id\": {\n \"type\": \"integer\"\n },\n \"revision\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"id\"\n ],\n \"type\": \"object\"\n },\n \"gzipJson\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"Value is immutable\",\n \"rule\": \"self == oldSelf\"\n }\n ]\n },\n \"json\": {\n \"type\": \"string\"\n },\n \"jsonnet\": {\n \"type\": \"string\"\n },\n \"jsonnetLib\": {\n \"properties\": {\n \"fileName\": {\n \"type\": \"string\"\n },\n \"gzipJsonnetProject\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"jPath\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"fileName\",\n \"gzipJsonnetProject\"\n ],\n \"type\": \"object\"\n },\n \"plugins\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resyncPeriod\": {\n \"default\": \"5m\",\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"instanceSelector\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Grafana Dashboard\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json new file mode 100644 index 00000000000..ddceea08953 --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Grafana Datasource", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "component": { + "kind": "GrafanaDatasource", + "version": "grafana.integreatly.org/v1beta1", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"allowCrossNamespaceImport\": {\n \"type\": \"boolean\"\n },\n \"datasource\": {\n \"properties\": {\n \"access\": {\n \"type\": \"string\"\n },\n \"basicAuth\": {\n \"type\": \"boolean\"\n },\n \"basicAuthUser\": {\n \"type\": \"string\"\n },\n \"database\": {\n \"type\": \"string\"\n },\n \"editable\": {\n \"type\": \"boolean\"\n },\n \"isDefault\": {\n \"type\": \"boolean\"\n },\n \"jsonData\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"orgId\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"secureJsonData\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"uid\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"Value is immutable\",\n \"rule\": \"self == oldSelf\"\n }\n ]\n },\n \"plugins\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resyncPeriod\": {\n \"default\": \"5m\",\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"valuesFrom\": {\n \"items\": {\n \"properties\": {\n \"targetPath\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetPath\",\n \"valueFrom\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"datasource\",\n \"instanceSelector\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Grafana Datasource\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json new file mode 100644 index 00000000000..83b8a794c9b --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Grafana Folder", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "enabled", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "component": { + "kind": "GrafanaFolder", + "version": "grafana.integreatly.org/v1beta1", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"allowCrossNamespaceImport\": {\n \"type\": \"boolean\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"Value is immutable\",\n \"rule\": \"self == oldSelf\"\n }\n ]\n },\n \"permissions\": {\n \"type\": \"string\"\n },\n \"resyncPeriod\": {\n \"default\": \"5m\",\n \"format\": \"duration\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+$\",\n \"type\": \"string\"\n },\n \"title\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"instanceSelector\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Grafana Folder\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/model.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/model.json new file mode 100644 index 00000000000..1f8bfcd80b0 --- /dev/null +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/model.json @@ -0,0 +1,37 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "grafana-operator", + "displayName": "Grafana Operator", + "description": "", + "status": "enabled", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Observability and Analysis", + "metadata": null + }, + "subCategory": "Monitoring", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#F15B2A", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "4.4.5" + }, + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json b/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json index b2833529617..7c4cee361d6 100644 --- a/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json +++ b/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json @@ -45,20 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", + "primaryColor": "#F15B2A", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GrafanaDashboard", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json index f2328176df3..9922ddb8581 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Instance", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json index b200be6eed3..07f69b6de2c 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "InstanceChartRepository", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json index c1035b1daf5..de72602bee2 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Project", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json index 291824f925b..390cb5f6236 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Registry", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json index 7277548b090..6fb63b87ad5 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Replication", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json index 1377544dbc0..13afa6b0de5 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json b/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json index f92e7be7a5b..9525801e4c3 100644 --- a/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json +++ b/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json new file mode 100644 index 00000000000..539b2ed318e --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Binding", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultBinding", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultBinding is the Schema for the VaultBindings API.\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"agent\": {\n \"description\": \"Agent can be used to configure the Heist agent sidecar.\",\n \"properties\": {\n \"certificateTemplates\": {\n \"description\": \"CertificateTemplates is a list of certificate templates to be used when issuing certificates in the agent.\",\n \"items\": {\n \"properties\": {\n \"alias\": {\n \"description\": \"Alias is the name of this certificate template.\",\n \"type\": \"string\"\n },\n \"certificateRole\": {\n \"description\": \"CertificateRole is the name of the VaultCertificateRole to be used for issuing this certificate.\",\n \"type\": \"string\"\n },\n \"commonName\": {\n \"description\": \"CommonName is the CN (common name) of the issued certificate.\",\n \"type\": \"string\"\n },\n \"dnsSans\": {\n \"description\": \"DNSSans is a list of DNS subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludeCNFromSans\": {\n \"description\": \"ExcludeCNFromSans toggles if the common name should be excluded from the subject alternative names of the certificate.\",\n \"type\": \"boolean\"\n },\n \"ipSans\": {\n \"description\": \"IPSans is a list of IP subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"otherSans\": {\n \"description\": \"OtherSans is a list of custom OID/UTF-8 subject alternative names requested for this certificate. Expected Format: `\\u003coid\\u003e;\\u003ctype\\u003e:\\u003cvalue\\u003e`\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ttl\": {\n \"description\": \"TTL is the Time-To-Live requested for this certificate.\",\n \"type\": \"string\"\n },\n \"uriSans\": {\n \"description\": \"AlternativeNames is a list of URI subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"certificateRole\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"templates\": {\n \"description\": \"Templates is a list of files to be populated in relevant pods by the Heist agent.\",\n \"items\": {\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode is the desired file mode of the output file. 0640 is the default. The agent is the owner of the file, owner permissions will always be read + write and cannot be modified this way. Must be specified as octal.\",\n \"pattern\": \"^[0][0-7]{3}$\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is the desired output path for this value. Relative paths are interpreted to be relative to the default Heist secret directory /heist/secrets. The path must be in a shared directory, where the Heist Agent and application container have access.\",\n \"type\": \"string\"\n },\n \"template\": {\n \"description\": \"Template is the template for this value. The template supports [sprig](https://masterminds.github.io/sprig/) template functions and can access all bound secrets and associated capabilities with additional template functions: - `kvSecret \\\"\\u003cname\\u003e\\\" \\\"\\u003cfield\\u003e\\\"`: retrieves the value of field \\\"\\u003cfield\\u003e\\\" from a KV secret with name \\\"\\u003cname\\u003e\\\". - `caField \\\"\\u003cname\\u003e\\\" \\\"\\u003cfield\\u003e\\\"`: retrieves the value of field \\\"\\u003cfield\\u003e\\\" from CA \\\"\\u003cname\\u003e\\\". Supported values for \\\"\\u003cfield\\u003e\\\" are defined in VaultCertificateFieldType. - `certField \\\"\\u003cname\\u003e\\\" \\\"\\u003cfield\\u003e\\\"`: retrieves the value of field \\\"\\u003cfield\\u003e\\\" from certificate template \\\"\\u003cname\\u003e\\\". Supported values for \\\"\\u003cfield\\u003e\\\" are defined in VaultCertificateFieldType.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"capabilities\": {\n \"description\": \"Capabilities configures general Vault capabilities for which access is granted.\",\n \"items\": {\n \"description\": \"VaultBindingHeistCapability represents general capabilities which can be granted to a subject.\",\n \"enum\": [\n \"encrypt\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"certificateAuthorities\": {\n \"description\": \"CertificateAuthorities is a list of certificate authorities to which access is granted.\",\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"description\": \"Capabilities is a list of Vault capabilities for which access is granted. If not otherwise set then the \\\"read_public\\\" capability will be granted by default.\",\n \"items\": {\n \"description\": \"VaultBindingCertificateAuthorityCapability represents Vault capabilities for VaultCertificateAuthority objects which can be granted to a subject. The \\\"read_public\\\" capability is granted by default\",\n \"enum\": [\n \"read_public\",\n \"read_private\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the VaultCertificateAuthority Kubernetes object. It is expected to be in the same namespace as the binding.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"certificateRoles\": {\n \"description\": \"CertificateRoles is a list of certificate roles for which access is granted.\",\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"description\": \"Capabilities is a list of Vault capabilities for which access is granted. If not otherwise set then the \\\"issue\\\" capability will be granted by default.\",\n \"items\": {\n \"description\": \"VaultBindingCertificateCapability represents capabilities for VaultCertificateRole objects which can be granted to a subject. The \\\"issue\\\" capability is granted by default\",\n \"enum\": [\n \"issue\",\n \"sign_csr\",\n \"sign_verbatim\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the VaultCertificateRole.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"kvSecrets\": {\n \"description\": \"KVSecrets is a list of kv secrets to which access is granted.\",\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"description\": \"Capabilities is a list of granted capabilities for the specified KV secret in Vault. If not otherwise set then the \\\"read\\\" capability is granted by default https://www.vaultproject.io/docs/concepts/policies#capabilities, however, currently Heist only supports \\\"read\\\".\",\n \"items\": {\n \"description\": \"VaultBindingKVCapability represents capabilities for VaultKVSecret objects which can be granted to a subject. The \\\"read\\\" capability is granted by default.\",\n \"enum\": [\n \"read\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the VaultKVSecret.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"subject\": {\n \"description\": \"Subject configures the service account to which access is granted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the service account you want to grant access to the referenced secrets.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"transitKeys\": {\n \"description\": \"TransitKeys is a list of transit keys and capabilities for which access is granted.\",\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"description\": \"Capabilities is a list of Vault capabilities for which access is granted.\",\n \"items\": {\n \"description\": \"VaultBindingTransitKeyCapability represents capabilities for VaultTransitKey objects which can be granted to a subject.\",\n \"enum\": [\n \"encrypt\",\n \"decrypt\",\n \"datakey\",\n \"rewrap\",\n \"sign\",\n \"hmac\",\n \"verify\",\n \"read\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the VaultTransitKey.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Binding\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json new file mode 100644 index 00000000000..a40cb27a1b1 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Certificate Authority", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultCertificateAuthority", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultCertificateAuthority is the Schema for the VaultCertificateAuthorities API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultCertificateAuthoritySpec defines the desired state of VaultCertificateAuthority.\",\n \"properties\": {\n \"deleteProtection\": {\n \"description\": \"DeleteProtection configures that the secret should not be able to be deleted. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"import\": {\n \"description\": \"Import can be used to import an already existing certificate.\",\n \"properties\": {\n \"certificate\": {\n \"description\": \"Certificate contains the certificate matching the private key that should be imported. Can be either encrypted, or plain text.\",\n \"type\": \"string\"\n },\n \"privateKey\": {\n \"description\": \"PrivateKey is the private key that should be imported. The private key must be encrypted with the default Heist transit engine to ensure no secrets are stored in plaintext as a Kubernetes object.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"issuer\": {\n \"description\": \"Issuer implicitly defines whether the CA is an intermediate or a root CA. If left empty the CA is assumed to be a root CA and will be self-signed. Otherwise, the configured name is a reference to the parent CAs Kubernetes object.\",\n \"type\": \"string\"\n },\n \"plugin\": {\n \"description\": \"Plugin configures the plugin backend used for this engine. Defaults to pki.\",\n \"type\": \"string\"\n },\n \"settings\": {\n \"description\": \"Settings configures the key pair of the Certificate Authority\",\n \"properties\": {\n \"excludeCNFromSans\": {\n \"description\": \"ExcludeCNFromSans configures if the common name set in the subject should be excluded from the subject alternative names extension.\",\n \"type\": \"boolean\"\n },\n \"exported\": {\n \"description\": \"Exported configures if the CA should be generated in exported mode. If this is set to true then the private key of the CA can be bound to and accessed by applications. If it is set to false then the private key will be inaccessible. Defaults to false. This setting can not be changed after the PKI is created.\",\n \"type\": \"boolean\"\n },\n \"ipSans\": {\n \"description\": \"IPSans sets the IP subject alternative names extension for the certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"keyBits\": {\n \"default\": 2048,\n \"description\": \"KeyBits sets the size of the key of the certificate authority. The KeyBits value provided must be a valid value for the configured KeyType.\",\n \"enum\": [\n 224,\n 256,\n 384,\n 521,\n 2048,\n 3072,\n 4096\n ],\n \"type\": \"integer\"\n },\n \"keyType\": {\n \"default\": \"rsa\",\n \"description\": \"KeyType sets the key algorithm of the CA certificate. Can be either rsa or ec.\",\n \"enum\": [\n \"rsa\",\n \"ec\"\n ],\n \"type\": \"string\"\n },\n \"otherSans\": {\n \"description\": \"OtherSans sets subject alternative names extension that do not fall into the other categories for the certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"permittedDNSDomains\": {\n \"description\": \"PermittedDNSDomains configures an allow list of domains for which certificates can be issued using the certificate authority.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subjectAlternativeNames\": {\n \"description\": \"SubjectAlternativeNames sets subject alternative names extensions for the certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ttl\": {\n \"description\": \"TTL sets the validity period of the CA certificate.\",\n \"type\": \"string\"\n },\n \"uriSans\": {\n \"description\": \"URISans sets URI subject alternative names extension for the certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"keyBits\",\n \"keyType\"\n ],\n \"type\": \"object\"\n },\n \"subject\": {\n \"description\": \"Subject configures the subject fields of the Certificate Authority It is recommended to set a least one field im the Subject section\",\n \"properties\": {\n \"commonName\": {\n \"description\": \"CommonName sets the CN (common name) field in the certificate subject\",\n \"type\": \"string\"\n },\n \"country\": {\n \"description\": \"Country sets the C (country) field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"locality\": {\n \"description\": \"Locality sets the L (locality) field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"organization\": {\n \"description\": \"Organization sets the organization (O) field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ou\": {\n \"description\": \"OrganizationalUnit sets the OU (organizational unit) field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"postalCode\": {\n \"description\": \"PostalCode sets the postal code field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"province\": {\n \"description\": \"Province sets the ST (province) field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"streetAddress\": {\n \"description\": \"StreetAddress sets the street address field in the certificate's subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"tuning\": {\n \"description\": \"Tuning can be used to tune the PKI Secret Engine in Vault\",\n \"properties\": {\n \"defaultLeaseTTL\": {\n \"description\": \"DefaultLeaseTTL sets the default validity of certificates issued by the PKI secret engine.\",\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Description sets the description of the PKI secret engine in Vault.\",\n \"type\": \"string\"\n },\n \"maxLeaseTTL\": {\n \"description\": \"MaxLeaseTTL sets the maximum validity of any certificate issued by the PKI secret engine.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Certificate Authority\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json new file mode 100644 index 00000000000..b024a521030 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Certificate Role", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultCertificateRole", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultCertificateRole is the Schema for the VaultCertificateRole API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultCertificateRoleSpec defines the desired state of VaultCertificateRole.\",\n \"properties\": {\n \"issuer\": {\n \"description\": \"Issuer specifies the certificate authority used to issue the certificate.\",\n \"type\": \"string\"\n },\n \"settings\": {\n \"description\": \"Settings configures the settings of the certificate.\",\n \"properties\": {\n \"allowAnyName\": {\n \"description\": \"AllowAnyName configures if certificates can be issued for any common name. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allow_any_name.\",\n \"type\": \"boolean\"\n },\n \"allowBareDomains\": {\n \"description\": \"AllowBareDomains configures if certificates can be issued for bare domains. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allow_bare_domains.\",\n \"type\": \"boolean\"\n },\n \"allowGlobDomains\": {\n \"description\": \"AllowGlobDomains configures if certificates can be issued for wildcard domains. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allow_glob_domains.\",\n \"type\": \"boolean\"\n },\n \"allowIPSans\": {\n \"description\": \"AllowIPSans configures if certificates with IP subject alternative names can be issued. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allow_ip_sans.\",\n \"type\": \"boolean\"\n },\n \"allowLocalhost\": {\n \"description\": \"AllowLocalhost configures if the certificate is valid for localhost. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allow_localhost.\",\n \"type\": \"boolean\"\n },\n \"allowSubdomains\": {\n \"description\": \"AllowSubdomains configures if certificates can be issued for subdomains. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allow_subdomains.\",\n \"type\": \"boolean\"\n },\n \"allowedDomains\": {\n \"description\": \"AllowedDomains configures a list of domains for which this certificate can be issued. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allowed_domains.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedDomainsTemplate\": {\n \"description\": \"AllowedDomainsTemplate configures if the list of allowed domains can make used of templates. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allowed_domains_template.\",\n \"type\": \"boolean\"\n },\n \"allowedOtherSans\": {\n \"description\": \"AllowedOtherSans configures an allow list of other subject alternative names for which certificates can be issued. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allowed_other_sans.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedURISans\": {\n \"description\": \"AllowedURISans configures an allow list of URI subject alternative names for which certificates can be issued. Additional information: https://www.vaultproject.io/api-docs/secret/pki#allowed_uri_sans.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"basicConstraintsValidForNonCA\": {\n \"description\": \"BasicConstraintsValidForNonCA configures if basic constraints should be valid when issuing non-ca certificates. Additional information: https://www.vaultproject.io/api-docs/secret/pki#basic_constraints_valid_for_non_ca.\",\n \"type\": \"boolean\"\n },\n \"clientFlag\": {\n \"description\": \"ClientFlag configures if issued certificates should have the client flag set. Additional information: https://www.vaultproject.io/api-docs/secret/pki#client_flag.\",\n \"type\": \"boolean\"\n },\n \"codeSigningFlag\": {\n \"description\": \"CodeSigningFlag configures if issued certificates should have the code signing flag set. Additional information: https://www.vaultproject.io/api-docs/secret/pki#code_signing_flag.\",\n \"type\": \"boolean\"\n },\n \"emailProtectionFlag\": {\n \"description\": \"EmailProtectionFlag configures if issued certificates should have the email protection flag set. Additional information: https://www.vaultproject.io/api-docs/secret/pki#email_protection_flag.\",\n \"type\": \"boolean\"\n },\n \"enforceHostNames\": {\n \"description\": \"EnforceHostNames configures if host names should be enforced. Additional information: https://www.vaultproject.io/api-docs/secret/pki#enforce_hostnames.\",\n \"type\": \"boolean\"\n },\n \"extKeyUsage\": {\n \"description\": \"ExtendedKeyUsage configures a list of extended key usages issued certificate should allow. Additional information: https://www.vaultproject.io/api-docs/secret/pki#ext_key_usage-1.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"extKeyUsageOIDS\": {\n \"description\": \"ExtendedKeyUsageOIDS configures a list of key usage OIDs issued certificate should allow. Additional information: https://www.vaultproject.io/api-docs/secret/pki#ext_key_usage_oids-1.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"keyBits\": {\n \"description\": \"KeyBits sets the size of the key of the certificate authority. Ignored in signing operations when KeyType is `any`. Additional information: https://www.vaultproject.io/api-docs/secret/pki#key_bits-3.\",\n \"enum\": [\n 224,\n 256,\n 384,\n 521,\n 2048,\n 3072,\n 4096\n ],\n \"type\": \"integer\"\n },\n \"keyType\": {\n \"default\": \"any\",\n \"description\": \"KeyType sets the key algorithm of the CA certificate. Can be either rsa, ec or any if either type and any bit size should be supported. ED25519 is not supported yet. Additional information: https://www.vaultproject.io/api-docs/secret/pki#key_type-3.\",\n \"enum\": [\n \"rsa\",\n \"ec\",\n \"any\"\n ],\n \"type\": \"string\"\n },\n \"keyUsage\": {\n \"description\": \"KeyUsage configures a list of usages issued certificate should allow. Additional information: https://www.vaultproject.io/api-docs/secret/pki#key_usage-1.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxTTL\": {\n \"description\": \"MaxTTL configures the maximum validity of the certificate. Additional information: https://www.vaultproject.io/api-docs/secret/pki#max_ttl.\",\n \"type\": \"string\"\n },\n \"notBeforeDuration\": {\n \"description\": \"NotBeforeDuration configures a delay which has to elapse for any issued certificate to become valid. Additional information: https://www.vaultproject.io/api-docs/secret/pki#not_before_duration-2.\",\n \"type\": \"string\"\n },\n \"policyIdentifiers\": {\n \"description\": \"PolicyIdentifiers configures a list of policy OIDs which should be set on issued certificates. Additional information: https://www.vaultproject.io/api-docs/secret/pki#policy_identifiers.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"requireCN\": {\n \"description\": \"RequireCommonName configures if setting a common name is required when issuing certificates. Additional information: https://www.vaultproject.io/api-docs/secret/pki#require_cn.\",\n \"type\": \"boolean\"\n },\n \"serverFlag\": {\n \"description\": \"ServerFlag configures if issued certificates should have the server flag set. Additional information: https://www.vaultproject.io/api-docs/secret/pki#server_flag.\",\n \"type\": \"boolean\"\n },\n \"ttl\": {\n \"description\": \"TTL configures the validity of the certificate. Additional information: https://www.vaultproject.io/api-docs/secret/pki#ttl.\",\n \"type\": \"string\"\n },\n \"useCSRCommonName\": {\n \"description\": \"UseCSRCommonName configures if the common name from a CSR should be set in issued certificate. Additional information: https://www.vaultproject.io/api-docs/secret/pki#use_csr_common_name.\",\n \"type\": \"boolean\"\n },\n \"useCSRSans\": {\n \"description\": \"UseCSRSans configures if the subject alternative names from a CSR should be included in issued certificates. Additional information: https://www.vaultproject.io/api-docs/secret/pki#use_csr_sans.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"subject\": {\n \"description\": \"Subject configures the subject fields of the Certificate.\",\n \"properties\": {\n \"country\": {\n \"description\": \"Country sets the country field (C) in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"locality\": {\n \"description\": \"Locality sets the locality field (L) in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"organization\": {\n \"description\": \"Organization sets the organization (O) field in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ou\": {\n \"description\": \"OrganizationalUnit sets the organizational unit (OU) field in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"postalCode\": {\n \"description\": \"PostalCode sets the postal code field in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"province\": {\n \"description\": \"Province sets the state or province field (ST) in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"streetAddress\": {\n \"description\": \"StreetAddress sets the street address field in the certificate subject.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Certificate Role\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json new file mode 100644 index 00000000000..8a9a02558d3 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Client Config", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultClientConfig", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultClientConfig is the Schema for the vaultclientconfigs API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultClientConfigSpec defines the desired state of VaultClientConfig.\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"authMountPath\": {\n \"type\": \"string\"\n },\n \"caCerts\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"certificateAuthorities\": {\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"items\": {\n \"description\": \"VaultBindingCertificateAuthorityCapability represents Vault capabilities for VaultCertificateAuthority objects which can be granted to a subject. The \\\"read_public\\\" capability is granted by default\",\n \"enum\": [\n \"read_public\",\n \"read_private\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enginePath\": {\n \"type\": \"string\"\n },\n \"kvSecrets\": {\n \"properties\": {\n \"enginePath\": {\n \"type\": \"string\"\n },\n \"privateSecret\": {\n \"type\": \"string\"\n },\n \"publicSecret\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"certificates\": {\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"items\": {\n \"description\": \"VaultBindingCertificateCapability represents capabilities for VaultCertificateRole objects which can be granted to a subject. The \\\"issue\\\" capability is granted by default\",\n \"enum\": [\n \"issue\",\n \"sign_csr\",\n \"sign_verbatim\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enginePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"roleName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"kvSecrets\": {\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"items\": {\n \"description\": \"VaultBindingKVCapability represents capabilities for VaultKVSecret objects which can be granted to a subject. The \\\"read\\\" capability is granted by default.\",\n \"enum\": [\n \"read\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enginePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"secretPath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"templates\": {\n \"properties\": {\n \"certificateTemplates\": {\n \"description\": \"CertificateTemplates is a list of certificate templates to be used when issuing certificates in the agent.\",\n \"items\": {\n \"properties\": {\n \"alias\": {\n \"description\": \"Alias is the name of this certificate template.\",\n \"type\": \"string\"\n },\n \"certificateRole\": {\n \"description\": \"CertificateRole is the name of the VaultCertificateRole to be used for issuing this certificate.\",\n \"type\": \"string\"\n },\n \"commonName\": {\n \"description\": \"CommonName is the CN (common name) of the issued certificate.\",\n \"type\": \"string\"\n },\n \"dnsSans\": {\n \"description\": \"DNSSans is a list of DNS subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludeCNFromSans\": {\n \"description\": \"ExcludeCNFromSans toggles if the common name should be excluded from the subject alternative names of the certificate.\",\n \"type\": \"boolean\"\n },\n \"ipSans\": {\n \"description\": \"IPSans is a list of IP subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"otherSans\": {\n \"description\": \"OtherSans is a list of custom OID/UTF-8 subject alternative names requested for this certificate. Expected Format: `\\u003coid\\u003e;\\u003ctype\\u003e:\\u003cvalue\\u003e`\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ttl\": {\n \"description\": \"TTL is the Time-To-Live requested for this certificate.\",\n \"type\": \"string\"\n },\n \"uriSans\": {\n \"description\": \"AlternativeNames is a list of URI subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"certificateRole\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"templates\": {\n \"description\": \"Templates is a list of files to be populated in relevant pods by the Heist agent.\",\n \"items\": {\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode is the desired file mode of the output file. 0640 is the default. The agent is the owner of the file, owner permissions will always be read + write and cannot be modified this way. Must be specified as octal.\",\n \"pattern\": \"^[0][0-7]{3}$\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is the desired output path for this value. Relative paths are interpreted to be relative to the default Heist secret directory /heist/secrets. The path must be in a shared directory, where the Heist Agent and application container have access.\",\n \"type\": \"string\"\n },\n \"template\": {\n \"description\": \"Template is the template for this value. The template supports [sprig](https://masterminds.github.io/sprig/) template functions and can access all bound secrets and associated capabilities with additional template functions: - `kvSecret \\\"\\u003cname\\u003e\\\" \\\"\\u003cfield\\u003e\\\"`: retrieves the value of field \\\"\\u003cfield\\u003e\\\" from a KV secret with name \\\"\\u003cname\\u003e\\\". - `caField \\\"\\u003cname\\u003e\\\" \\\"\\u003cfield\\u003e\\\"`: retrieves the value of field \\\"\\u003cfield\\u003e\\\" from CA \\\"\\u003cname\\u003e\\\". Supported values for \\\"\\u003cfield\\u003e\\\" are defined in VaultCertificateFieldType. - `certField \\\"\\u003cname\\u003e\\\" \\\"\\u003cfield\\u003e\\\"`: retrieves the value of field \\\"\\u003cfield\\u003e\\\" from certificate template \\\"\\u003cname\\u003e\\\". Supported values for \\\"\\u003cfield\\u003e\\\" are defined in VaultCertificateFieldType.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"transitKeys\": {\n \"items\": {\n \"properties\": {\n \"capabilities\": {\n \"items\": {\n \"description\": \"VaultBindingTransitKeyCapability represents capabilities for VaultTransitKey objects which can be granted to a subject.\",\n \"enum\": [\n \"encrypt\",\n \"decrypt\",\n \"datakey\",\n \"rewrap\",\n \"sign\",\n \"hmac\",\n \"verify\",\n \"read\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enginePath\": {\n \"type\": \"string\"\n },\n \"keyName\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Client Config\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json new file mode 100644 index 00000000000..273b20745d4 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault KV Secret", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultKVSecret", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultKVSecret is the Schema for the vaultkvsecrets API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultKVSecretSpec defines the desired secret's fields and the secret's config.\",\n \"properties\": {\n \"deleteProtection\": {\n \"description\": \"DeleteProtection configures that the secret should not be able to be deleted. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"engine\": {\n \"description\": \"Engine configures the secret storage engine in which the secret should be stored.\",\n \"type\": \"string\"\n },\n \"fields\": {\n \"additionalProperties\": {\n \"description\": \"VaultKVSecretField defines the desired state of a field in a VaultKVSecret.\",\n \"properties\": {\n \"autoGenerated\": {\n \"description\": \"AutoGenerated configures that the secret should have an autogenerated value. Must be set to false when using a custom stringValue or custom cipherText. Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"autoGeneratedLength\": {\n \"description\": \"AutoGeneratedLength can be used in combination with AutoGenerated. It optionally configures the length of the autogenerated secret, the default is 64 character.\",\n \"type\": \"integer\"\n },\n \"ciphertext\": {\n \"description\": \"CipherText represents a value which has been encrypted by Heists managed Transit Engine.\",\n \"pattern\": \"^vault:([a-z0-9]+):(.+)$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"Fields is a map of fields stored in the Secret.\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"Path configures the relative path of the Secret inside its secret engine.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"engine\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault KV Secret\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json new file mode 100644 index 00000000000..2d88e253ef9 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault KV Secret Engine", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultKVSecretEngine", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultKVSecretEngine is the Schema for the vaultkvsecretengines API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultKVSecretEngineSpec defines the desired state of VaultKVSecretEngine.\",\n \"properties\": {\n \"deleteProtection\": {\n \"description\": \"DeleteProtection configures that the secret engine should not be able to be deleted. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"maxVersions\": {\n \"description\": \"MaxVersions configures the maximum number of secret versions to keep\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"maxVersions\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault KV Secret Engine\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json new file mode 100644 index 00000000000..5f11fa96c59 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Sync Secret", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultSyncSecret", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultSyncSecret is the Schema for the vaultsyncsecrets API.\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"certificateTemplates\": {\n \"description\": \"CertificateTemplates configures settings for certificates which may be issued.\",\n \"items\": {\n \"properties\": {\n \"alias\": {\n \"description\": \"Alias is the name of this certificate template.\",\n \"type\": \"string\"\n },\n \"certificateRole\": {\n \"description\": \"CertificateRole is the name of the VaultCertificateRole to be used for issuing this certificate.\",\n \"type\": \"string\"\n },\n \"commonName\": {\n \"description\": \"CommonName is the CN (common name) of the issued certificate.\",\n \"type\": \"string\"\n },\n \"dnsSans\": {\n \"description\": \"DNSSans is a list of DNS subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludeCNFromSans\": {\n \"description\": \"ExcludeCNFromSans toggles if the common name should be excluded from the subject alternative names of the certificate.\",\n \"type\": \"boolean\"\n },\n \"ipSans\": {\n \"description\": \"IPSans is a list of IP subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"otherSans\": {\n \"description\": \"OtherSans is a list of custom OID/UTF-8 subject alternative names requested for this certificate. Expected Format: `\\u003coid\\u003e;\\u003ctype\\u003e:\\u003cvalue\\u003e`\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ttl\": {\n \"description\": \"TTL is the Time-To-Live requested for this certificate.\",\n \"type\": \"string\"\n },\n \"uriSans\": {\n \"description\": \"AlternativeNames is a list of URI subject alternative names requested for this certificate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"certificateRole\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"data\": {\n \"additionalProperties\": {\n \"properties\": {\n \"certificate\": {\n \"description\": \"Certificate configures a VaultCertificateRole from which a field should be synced.\",\n \"properties\": {\n \"field\": {\n \"description\": \"Field is the field of the certificate which should be synced.\",\n \"enum\": [\n \"certificate\",\n \"private_key\",\n \"cert_chain\",\n \"full_cert_chain\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the certificate template used to issue the certificate which should be synced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"certificateAuthority\": {\n \"description\": \"CertificateAuthority configures a VaultCertificateAuthority from which a field should be synced.\",\n \"properties\": {\n \"field\": {\n \"description\": \"Field is the field of the certificate authority which should be synced.\",\n \"enum\": [\n \"certificate\",\n \"private_key\",\n \"cert_chain\",\n \"full_cert_chain\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the VaultCertificateAuthority which should be synced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cipherText\": {\n \"description\": \"CipherText represents a value which has been encrypted by Heists managed Transit Engine.\",\n \"pattern\": \"^vault:([a-z0-9]+):(.+)$\",\n \"type\": \"string\"\n },\n \"kvSecret\": {\n \"description\": \"KVSecret configures a VaultKVSecret from which a field should be synced\",\n \"properties\": {\n \"field\": {\n \"description\": \"Field specifies a single field of the VaultKVSecret which should be synced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the VaultKVSecret which should be synced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"Data is a map of values which should be synced to the Target Kubernetes Secret.\",\n \"type\": \"object\"\n },\n \"target\": {\n \"description\": \"Target configures the secret you want to sync values to.\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalAnnotations is a map of annotations added to the secret.\",\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalLabels is a map of labels added to the secret.\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is the name of the secret resource you want to create.\",\n \"maxLength\": 253,\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace the secret should be created in.\",\n \"maxLength\": 63,\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of secret which should be created.\",\n \"enum\": [\n \"Opaque\",\n \"kubernetes.io/dockercfg\",\n \"kubernetes.io/dockerconfigjson\",\n \"kubernetes.io/basic-auth\",\n \"kubernetes.io/ssh-auth\",\n \"kubernetes.io/tls\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Sync Secret\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json new file mode 100644 index 00000000000..b171b60b4b9 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Transit Engine", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultTransitEngine", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultTransitEngine is the Schema for the vaulttransitengines API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultTransitEngineSpec defines the desired state of VaultTransitEngine.\",\n \"properties\": {\n \"plugin\": {\n \"description\": \"Plugin configures the plugin backend used for this engine. Defaults to transit. https://www.vaultproject.io/docs/upgrading/plugins#overriding-built-in-plugins\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Transit Engine\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json new file mode 100644 index 00000000000..03b88199a80 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json @@ -0,0 +1,66 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "displayName": "Vault Transit Key", + "description": "", + "format": "JSON", + "model": { + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + }, + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "isNamespaced": true, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "status": "ignored", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "component": { + "kind": "VaultTransitKey", + "version": "heist.youniqx.com/v1alpha1", + "schema": "{\n \"description\": \"VaultTransitKey is the Schema for the vaulttransitengines API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VaultTransitKeySpec defines the desired state of VaultTransitKey.\",\n \"properties\": {\n \"allowPlaintextBackup\": {\n \"description\": \"AllowPlaintextBackup enables taking backups of named key in the plaintext format. Once set, this cannot be disabled.\",\n \"type\": \"boolean\"\n },\n \"deleteProtection\": {\n \"description\": \"DeleteProtection configures that the secret should not be able to be deleted. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"engine\": {\n \"description\": \"Engine configures the used transit engine.\",\n \"type\": \"string\"\n },\n \"exportable\": {\n \"description\": \"Exportable enables keys to be exportable. This allows for all the valid keys in the key ring to be exported. Once set, this cannot be disabled.\",\n \"type\": \"boolean\"\n },\n \"minimumDecryptionVersion\": {\n \"description\": \"MinimumDecryptionVersion specifies the minimum version of the key that can be used to decrypt the ciphertext. Adjusting this as part of a key rotation policy can prevent old copies of ciphertext from being decrypted, should they fall into the wrong hands. For signatures, this value controls the minimum version of signature that can be verified against. For HMACs, this controls the minimum version of a key allowed to be used as the key for verification.\",\n \"type\": \"integer\"\n },\n \"minimumEncryptionVersion\": {\n \"description\": \"MinimumEncryptionVersion Specifies the minimum version of the key that can be used to encrypt plaintext, sign payloads, or generate HMACs. Must be 0 (which will use the latest version) or a value greater or equal to min_decryption_version.\",\n \"type\": \"integer\"\n },\n \"type\": {\n \"description\": \"Type configures the transit key type. Must be a vault supported key type. Additional information: https://www.vaultproject.io/api/secret/transit#type.\",\n \"enum\": [\n \"aes128-gcm96\",\n \"aes256-gcm96\",\n \"chacha20-poly1305\",\n \"ed25519\",\n \"ecdsa-p256\",\n \"ecdsa-p384\",\n \"ecdsa-p521\",\n \"rsa-2048\",\n \"rsa-3072\",\n \"rsa-4096\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"engine\",\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Vault Transit Key\",\n \"type\": \"object\"\n}" + } + } \ No newline at end of file diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/model.json b/server/meshmodel/heist/1.1.199/v1.0.0/model.json new file mode 100644 index 00000000000..b7b4597ebc0 --- /dev/null +++ b/server/meshmodel/heist/1.1.199/v1.0.0/model.json @@ -0,0 +1,37 @@ +{ + "id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "core.meshery.io/v1beta1", + "version": "v1.0.0", + "name": "heist", + "displayName": "Heist", + "description": "", + "status": "ignored", + "hostID": "00000000-0000-0000-0000-000000000000", + "registrant": { + "hostname": "artifacthub" + }, + "category": { + "name": "Uncategorized", + "metadata": null + }, + "subCategory": "Uncategorized", + "metadata": { + "capabilities": "", + "defaultData": "", + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "shapePolygonPoints": "", + "styleOverrides": "", + "styles": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.1.199" + }, + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json index 97c06685073..436729e0434 100644 --- a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json +++ b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json index 781611b561a..2787adfaeb0 100644 --- a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json +++ b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json index 329ebba4d89..093481ca348 100644 --- a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json +++ b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json index a2a570776f0..b8e6bed7f0b 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Alertmanager", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json index 4e637928fa1..058121212f4 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "AlertmanagerConfig", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json index 8976c9eb3b4..1047aca53c9 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,7 +54,6 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json index b347d0b2336..7232a613a21 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "PodMonitor", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json index dd099758386..e0bbb3b827a 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Probe", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json index b173c0db76d..a218a5457f4 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Prometheus", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json index d66cf38845a..90d574f5cb4 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "PrometheusRule", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json index 07afa820a19..016e9801c8d 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "ServiceMonitor", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json index 13fb2cb206c..739ba985607 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "ThanosRuler", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json index d20ded21a11..b133fe9fc5c 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Alertmanager", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json index b991b2a9d64..6feb5c72f16 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "AlertmanagerConfig", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json index ee11c36b10d..135fe2bbba6 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "PodMonitor", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json index 7a0a29cbb72..f2146aa07a7 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Probe", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json index 27cf1a45f1a..e09be9fb33e 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "Prometheus", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json index db0a7c222e3..71f62292ff3 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "PrometheusRule", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json index 0c943d4c2ee..262bd548d64 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n .st3{display:inline;fill:#A91917;}\n .st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n .st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n .st6{fill:#FFC000;}\n .st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n .st8{fill:none;}\n .st9{fill-rule:evenodd;clip-rule:evenodd;}\n .st10{opacity:0.5;fill:#FFFFFF;}\n .st11{fill:#FFFFFF;}\n .st12{fill:#676767;}\n .st13{fill:url(#SVGID_1_);}\n .st14{fill:url(#SVGID_2_);}\n .st15{fill:url(#SVGID_3_);}\n .st16{fill:url(#SVGID_4_);}\n .st17{fill:url(#SVGID_5_);}\n .st18{fill:url(#SVGID_6_);}\n .st19{fill:url(#SVGID_7_);}\n .st20{fill:url(#SVGID_8_);}\n .st21{fill:url(#SVGID_9_);}\n .st22{fill:url(#SVGID_10_);}\n .st23{fill:url(#SVGID_11_);}\n .st24{fill:#333333;}\n .st25{fill:url(#SVGID_12_);}\n .st26{opacity:0.2;}\n .st27{fill:url(#SVGID_13_);}\n .st28{fill:url(#SVGID_14_);}\n .st29{fill:url(#SVGID_15_);}\n .st30{fill:url(#SVGID_16_);}\n .st31{fill:url(#SVGID_17_);}\n .st32{fill:url(#SVGID_18_);}\n .st33{fill:url(#SVGID_19_);}\n .st34{fill:url(#SVGID_20_);}\n .st35{fill:url(#SVGID_21_);}\n .st36{fill:url(#SVGID_22_);}\n .st37{fill:url(#SVGID_23_);}\n .st38{fill:url(#SVGID_24_);}\n .st39{fill:url(#SVGID_25_);}\n .st40{fill:url(#SVGID_26_);}\n .st41{fill:url(#SVGID_27_);}\n .st42{fill:url(#SVGID_28_);}\n .st43{fill:url(#SVGID_29_);}\n .st44{fill:url(#SVGID_30_);}\n .st45{fill:url(#SVGID_31_);}\n .st46{fill:url(#SVGID_32_);}\n .st47{fill:url(#SVGID_33_);}\n .st48{fill:url(#SVGID_34_);}\n .st49{fill:url(#SVGID_35_);}\n .st50{fill:url(#SVGID_36_);}\n .st51{fill:url(#SVGID_37_);}\n .st52{fill:url(#SVGID_38_);}\n .st53{fill:url(#SVGID_39_);}\n .st54{fill:url(#SVGID_40_);}\n .st55{fill:url(#SVGID_41_);}\n .st56{fill:url(#SVGID_42_);}\n .st57{fill:url(#SVGID_43_);}\n .st58{fill:url(#SVGID_44_);}\n .st59{fill:url(#SVGID_45_);}\n .st60{fill:url(#SVGID_46_);}\n .st61{fill:url(#SVGID_47_);}\n .st62{fill:url(#SVGID_48_);}\n .st63{clip-path:url(#SVGID_50_);}\n .st64{clip-path:url(#SVGID_52_);}\n .st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n \u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n z\"/\u003e\n \u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n S489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n S475.2,52.6,325,52.6z\"/\u003e\n \u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n c-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n c0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n c-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n l0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n c-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n c15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n c-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n c81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n c14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n C360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n c-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n c11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n \u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n \u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n c-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n \u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n c0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n \u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n c-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n \u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n c-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n \u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "ServiceMonitor", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json index 135fdf89a87..75401734f27 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -55,10 +54,9 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "ThanosRuler", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json index 3e223fba795..8b0118652d2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIGatewayAPI", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json index ce782d1c94b..1d051a6a1bb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIGatewayAPIConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json index 5cb171370c9..b332a370e2a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIGatewayGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json index f7244e37e68..ee246a1192b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIKeysKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json index 718b94dc8e8..539c25a1050 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerAccessLevel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json index cb23913c6e3..7b1b312bb1d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerAccessLevelCondition", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json index b71b9100ccb..e278aec1bf5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerAccessPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json index c6c8438c936..69442b76f6a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerGCPUserAccessBinding", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json index d2dac2e0bbf..20038682763 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerServicePerimeter", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json index 61aef9767dd..eaa204fd32c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerServicePerimeterResource", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json index 9e60463395f..3e92faad555 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBBackup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json index 68555225c48..b5d69a4cec1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json index c9f96b3e528..080063503a0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json index 2de9436e5b7..c63bdba3d60 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBUser", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json index ae2ce7ff80f..cf4b427badb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeAddonsConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json index 2c8b51121e1..fde415df469 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEndpointAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json index 7e892294c2c..ce6c76798d8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEnvgroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json index aa90826d23e..7b05130efb2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEnvgroupAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json index 4feaf3291e5..db12f90465b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEnvironment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json index 62b0e6e0c1e..b97e817dbb0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json index 8a5dd048c91..a75c1315824 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeInstanceAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json index 029ab41ebd9..e3c8a39c4da 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeNATAddress", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json index 7437f545268..c4b3c98ec71 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeOrganization", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json index 6d4049002cf..e97c5d3a07c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeSyncAuthorization", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json index 8e0e95aa55a..c135a877a1a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineDomainMapping", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json index 775e6378091..2254357c967 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineFirewallRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json index c66dabf2878..6ad85c9c34f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineFlexibleAppVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json index 3971deb9660..3697690db50 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineServiceSplitTraffic", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json index 68ef03125b7..0de4bfea10c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineStandardAppVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json index 412b9266512..f576bb1bdca 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ArtifactRegistryRepository", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json index d418547d4b0..6c397095ab8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BeyondCorpAppConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json index 2a386b4adb5..1e694ea73bf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BeyondCorpAppConnector", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json index 8db320242bb..ae7da2256dc 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BeyondCorpAppGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json index e1abcb8e252..61f72ee60d6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryAnalyticsHubDataExchange", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json index da3a0f6182c..7fbeb295c0c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryAnalyticsHubListing", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json index e61d14f429b..3bc8a66adc8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryConnectionConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json index c789ec80d60..17f4d8c65f9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDataPolicyDataPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json index 0f2e2f2dcff..42ccc57b035 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDataTransferConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json index 5ba322c71a0..ed4da36f5bb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDataset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json index 65422a39539..241ebb27959 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDatasetAccess", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json index 1672e87cfc6..c4571265ace 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json index 3a57ff21517..efcabab41a1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryReservationCapacityCommitment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json index 907ba7f73e1..b540b9c1223 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryReservationReservation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json index e00b5dc8d73..c76da6ce4da 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryRoutine", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json index 5ceed214cff..c8b1fdcbb0f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryTable", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json index ca8944e30b5..4e8e5ab50fe 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableAppProfile", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json index b7ff15413ff..949341ba742 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableGCPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json index 42c3b1d2294..6c782075251 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json index 4fc68ab7d24..419aa1532f8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableTable", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json index 07540fce460..04e03b0f8b2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BillingBudgetsBudget", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json index 9af9387d092..5fd3b626689 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BinaryAuthorizationAttestor", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json index ab99e9435e9..e5698951138 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BinaryAuthorizationPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json index b506e483279..fbde188b57e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerCertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json index 10aebc4781a..50ebdaa8c70 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerCertificateMap", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json index 6babc444e3a..1a64a44d6ec 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerCertificateMapEntry", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json index b6b0b8b00a4..70126d12bf8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerDNSAuthorization", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json index 296c0e0d3a0..07f901f7663 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudAssetFolderFeed", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json index b7668762a01..8f31db0f31c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudAssetOrganizationFeed", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json index a01d6d01d78..cc9f78c0cd8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudAssetProjectFeed", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json index af43e0f158f..0dd6683d531 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudBuildTrigger", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json index 9005263c1b5..ef8e1bc488e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudFunctions2Function", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json index a3f4731257c..ba0275e9fbc 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudFunctionsFunction", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json index 398de1e9bf0..444482de5d0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIDSEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json index 18b4e8e707f..ca970cbaef8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIOTDevice", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json index c0fd7e72c85..587352b7364 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIOTDeviceRegistry", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json index fab2fa15c48..2fb4e60ee15 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIdentityGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json index ce2d40697bd..23ad30a991e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIdentityMembership", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json index 5acb6abf66f..45e75e4da6a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudSchedulerJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json index 05beec5ac5c..008cb4199a7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudTasksQueue", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json index 3e681b56bb6..ae7a8432e68 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeAddress", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json index 71d3c2df087..aa0e2c7a9ab 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeAutoscaler", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json index 6e384c5e2e9..b842c13c34a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json index 9a7e2b976e3..44454d7c5aa 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendBucketSignedURLKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json index b5ac18053d3..bc584c8359c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json index 2d1e300b675..c9b7ac904b6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendServiceSignedURLKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json index c8001968c7d..8c219724e27 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeDisk", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json index ec50dd7313a..e6eda299770 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeDiskResourcePolicyAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json index 8e2f9acee56..20b6e052ae2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeExternalVPNGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json index d0c9471dc07..05f5fa255cf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewall", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json index 1afbb587fe8..33f5079e687 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewallPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json index 822370df4c5..24f26993ba5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewallPolicyAssociation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json index 345fbee8757..2b1d44febeb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewallPolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json index fab519afcc7..457965812f6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeForwardingRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json index 11ccd86dec9..5033d66cc87 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeGlobalNetworkEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json index 1d11361091a..f707439b3ac 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeGlobalNetworkEndpointGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json index 959ffc2e173..ac05a423d3f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeHTTPHealthCheck", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json index 88a27590dbe..bc66fe716b0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeHTTPSHealthCheck", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json index 12898f25a09..a4a2e8387fd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeHealthCheck", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json index b93230431c7..969375c3ab0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeImage", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json index f94fad51c47..bf37cbf1b16 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json index 363d1e895e4..149a8f5bbc3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json index 60e24ee5dd7..c8db8e32370 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceGroupManager", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json index e7703a00c1a..086a20fc752 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceGroupNamedPort", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json index 1750762fd77..19523df1878 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json index 4a5d2803b58..0936b79be69 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInterconnectAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json index 24c0ce882d6..ed9eb6f65fa 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeMachineImage", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json index bbc56687eb6..e75bd14e010 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeManagedSSLCertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json index 3940075b0ec..cff10bbc776 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetwork", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json index bbfbf1c5978..9c3486b5cdf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json index c1b769fd668..79d5a7a5e15 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkEndpointGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json index 5107c748193..48bdaa7f40c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkFirewallPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json index f0760eeb8ca..3b2f70e3dd9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkFirewallPolicyAssociation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json index b956807b987..62530138a60 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkFirewallPolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json index 5f4399baeb9..fb741329078 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkPeering", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json index 6a813b80aef..f677ba271cf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkPeeringRoutesConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json index d86f5f6956e..3f82cb0c93b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNodeGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json index 4933d81631b..3dc5fd53964 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNodeTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json index 121cb3874c7..3f8e1caec7d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeOrganizationSecurityPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json index fbd6527aaa1..71ca99a5031 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeOrganizationSecurityPolicyAssociation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json index c4081a67ff7..cf357a02a87 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeOrganizationSecurityPolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json index f4878283694..41f81cc6e2c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputePacketMirroring", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json index e23b7509d25..c53a4a12f1e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputePerInstanceConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json index a5ac540d605..4c3dfeff0cd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeProjectMetadata", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json index 3fa79ff76b1..b39e1488752 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionAutoscaler", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json index 166a6547972..3333ee16fa1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionDiskResourcePolicyAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json index 1b38ade2036..1c2fc1ee76a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionNetworkEndpointGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json index 6efc1a6f298..f7c57e1379a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionPerInstanceConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json index 63344f1cd6e..33ada7c4464 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionSSLPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json index caa0060dd78..f624dfa1f3f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeReservation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json index 8e8f6eaab66..77e475d1b1c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeResourcePolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json index 5b82f15a103..62d47bc3e0b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json index 04b5a69b873..23526f539de 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouter", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json index 94eb301e8d7..cebbbc44568 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouterInterface", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json index 05d96a40b96..5d67dcd54d4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouterNAT", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json index d42846ce557..62850ca6184 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouterPeer", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json index 2d2a154790d..c685f985dab 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSSLCertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json index a0d62ad769a..4001377558d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSSLPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json index b6105823070..0d20e5d8def 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSecurityPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json index b60a2916fbe..d5f45f2cfc6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeServiceAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json index d981eabce7f..c6c2fea4455 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSharedVPCHostProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json index 1eedb14d749..0f438a4904d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSharedVPCServiceProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json index 74154b421e2..51d99cc29a3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSnapshot", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json index b58c6283ea1..77aae8489c2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSubnetwork", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json index cd513187e82..e713cd6c1c0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetGRPCProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json index f4788333a9d..0b1568ed45e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetHTTPProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json index 5e218d27da3..d97ecc12563 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetHTTPSProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json index dda5f1b8b27..dc2474da788 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json index c944b879f17..5228bc794e2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json index 96c8ff40075..42e3b1e2c36 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetSSLProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json index 07710a986b4..4d56a24f210 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetTCPProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json index 2771f79e3d4..e3b61c977bd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetVPNGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json index c69d617b0ba..85f49692191 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeURLMap", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json index 2e2aae9a6cd..cf2481de43d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeVPNGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json index 2123645347e..c1ff8c8db1c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeVPNTunnel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json index f043e9c16a4..819a118bfd8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ConfigControllerInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json index b486c70943b..24ae4c374ed 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerAnalysisNote", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json index ba74f0299a4..9f990489235 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerAnalysisOccurrence", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json index ef757ae6c75..c9db6802594 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerAttachedCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json index 871b6d52901..71a806aa273 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json index 1a22d2d873b..216ae8f6395 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerNodePool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json index 7aa14fca393..e2a54d14bb4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPDeidentifyTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json index 7c53c8b3c34..4e1f71f04d5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPInspectTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json index ffcbf300983..873d926f783 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPJobTrigger", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json index ce82bfe242d..034e403af3d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPStoredInfoType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json index 1db23776257..10b1f505b93 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSManagedZone", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json index 90f371fbe51..9e7fb700634 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json index bf11286c278..fa2e686d487 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSRecordSet", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json index f04547075d2..e122d4715b1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSResponsePolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json index 61515dcd3eb..0a8f29727ba 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSResponsePolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json index 53a84c809ac..b18b2a7688d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogEntry", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json index ff31464b411..7b749fe91b6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogEntryGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json index 0ea51acd967..15b3b0715fb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogPolicyTag", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json index 80919f0687c..1e68cd43a30 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogTag", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json index 0fcdfdd8353..8c313b4089c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogTagTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json index a3547b303ea..364a7aee0fa 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogTaxonomy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json index 26679c3091c..127ac621d02 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataFusionInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json index d47dd4ccf80..8efc6906c23 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataflowFlexTemplateJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json index 5554d3ff8bd..c72e8d616a4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataflowJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json index afe9f4041e4..afc80353b2f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataformRepository", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json index 7a2d6766a77..8deb59acc63 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataprocAutoscalingPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json index 21f3026bf50..742ed043049 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataprocCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json index da23928da6b..ba578c4cd07 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataprocWorkflowTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json index d99434453ef..1321acf4f9a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastoreIndex", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json index 92b3383a38a..b547826f1c3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastreamConnectionProfile", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json index a33a14be785..2ec8cf37c7a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastreamPrivateConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json index 3ee06733771..fa78860cb3d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastreamStream", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json index d94afd219db..311363e8b3a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DeploymentManagerDeployment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json index e785b8d8e8a..f88a40adc09 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowAgent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json index cd3c056403c..7ed84ed13a9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXAgent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json index 0dfa417b2a6..8a34abb5688 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXEntityType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json index a4acd67ac39..94bd5a7272b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXFlow", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json index 9887d656579..55505ddf83b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXIntent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json index e776b9425c0..f3e0e75f89f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXPage", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json index 865d20e248f..4ba295bb38b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXWebhook", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json index 03b4c05e9f2..3a753206e93 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowEntityType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json index 79adaf4c7cf..579b766028b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowFulfillment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json index 9657e748ff4..396b5bdf045 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowIntent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json index 2d6a21bbb1b..9c5b2a2a615 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DocumentAIProcessor", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json index ba554d6437e..abb455434ac 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DocumentAIProcessorDefaultVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json index 9f77059e676..8ad511fe0c5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeContainerCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json index d39ac537ff1..7f5ce715a9a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeContainerNodePool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json index 583d7d0509a..39d5000f826 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeContainerVpnConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json index d0d76811f7e..8026c12679a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeNetworkNetwork", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json index fa57595beb8..df262c7b276 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeNetworkSubnet", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json index 9d931197f91..a65f5ae3329 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EssentialContactsContact", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json index bbe2a2b6cb1..6e91abc9a2e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EventarcTrigger", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json index 194f93d7a66..2171512d1f5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FilestoreBackup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json index b0cf9b4c07d..5a5cb3cb06f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FilestoreInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json index 5787aaf2382..d958cf4b301 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FilestoreSnapshot", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json index 4dc7c989a62..f4488f53abd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseAndroidApp", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json index a41f8432e65..4f07f7f9cc3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseDatabaseInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json index 33aa2ed1748..aee96a4a20e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseHostingChannel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json index 7de4517f145..275b0eb1892 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseHostingSite", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json index 3a5d5163e42..8a06190d3be 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json index 49c4b711cd0..0257ddcd474 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseStorageBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json index 382a4255e61..969c5d3c88e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseWebApp", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json index 283f78f7afe..5fff0bbb938 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirestoreIndex", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json index f660da0b30e..4ab2326886e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Folder", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json index b9d558211ed..448810a6cb5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEBackupBackupPlan", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json index 9f1fbc8864a..f9096ac1ff0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEHubFeature", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json index fe45e325f4e..348bd235e1f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEHubFeatureMembership", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json index f212675dce1..da0e0474f42 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEHubMembership", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json index 90b882ec41a..d278e981b9a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareConsentStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json index d5175140317..21bcd6e16e1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareDICOMStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json index 9a2064699a2..9ff40d41170 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareDataset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json index fae6096382d..5212ad76f1e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareFHIRStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json index 038ab773105..09f3778923a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareHL7V2Store", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json index 285ef36a687..0890ba3a848 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMAccessBoundaryPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json index 197def608b1..03272eca7e5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMAuditConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json index 711645c1fcc..059b2f24464 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMCustomRole", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json index c847fdcc237..cf1ba1de2d8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMPartialPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json index 35c34add65b..c6a2a70ebd0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json index 6b061910e77..9d7ddada2e6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMPolicyMember", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json index 69930517fbe..d15b06fb34a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMServiceAccount", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json index 147c9d3d6bd..f2bd99f7078 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMServiceAccountKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json index 04a696129ee..ce53d72c5dd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkforcePool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json index 78a8f86eb45..292a02203f7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkforcePoolProvider", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json index fee4b638559..44bc0b66d2c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkloadIdentityPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json index 80f2a77b67c..284c0d4428a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkloadIdentityPoolProvider", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json index cd4bf7a4d67..ce2e750b14e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAPBrand", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json index 874c30d9592..554c0cfad19 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAPIdentityAwareProxyClient", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json index 9b55486acc2..5dd06252999 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json index f43e90c0985..d9350d6599c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformDefaultSupportedIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json index 75f72a87549..61c7e153f17 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformInboundSAMLConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json index ec0e9393ae5..2a75834ec18 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformOAuthIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json index a1175545cd3..ba7abff87fb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformProjectDefaultConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json index 2a7290accc9..1778ce0aa7b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenant", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json index eb989ebb373..487bf0d8244 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenantDefaultSupportedIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json index 1785384625b..d75446cbdb0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenantInboundSAMLConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json index aebd87c0b95..88a7956349f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenantOAuthIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json index caf4f3020d3..808cacda559 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSCryptoKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json index 74119a86a9b..2179639e722 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSCryptoKeyVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json index a85b7145dfa..62c60715345 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSKeyRing", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json index 5f3de5de43e..e8ce9eac75a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSKeyRingImportJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json index 96386e9dcf3..89eab88c4b0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSSecretCiphertext", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json index ec20121720c..171fbe164ac 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json index 450bf5eb82f..e0f7d7a896d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogExclusion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json index 3ca1dc9d94a..b32e8812ba6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogMetric", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json index 9e371b02de4..b959851ce7f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogSink", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json index de377613143..ece06d8774e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogView", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json index 0f1856fea8e..c2f028690fe 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MLEngineModel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json index 11f9181a3b6..84135e919b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MemcacheInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json index c672ffb877b..9529367ecb3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringAlertPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json index da6c82d9ac2..e035ae71892 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringDashboard", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json index 189877cc2cf..8c980d2bd96 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json index 1d8de607046..b17e77dcc38 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringMetricDescriptor", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json index 1a8ba0cec1f..a824dcef828 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringMonitoredProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json index 4e3492f1e02..e895ad9c3f9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringNotificationChannel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json index fe4477be6a6..2060cc79c3e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json index 20ce37e953e..15aab027001 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringServiceLevelObjective", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json index d2dba1e95c4..8f382e29ee5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringUptimeCheckConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json index 6d88be405b5..e13dfa9d6b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkConnectivityHub", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json index e71ea198090..c2e59584e5d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkConnectivitySpoke", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json index 914c3e66579..9a8ba0ab817 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkManagementConnectivityTest", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json index 641eada633c..8fd6d1d97c7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkSecurityAuthorizationPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json index 75b013afd35..d3e706026ea 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkSecurityClientTLSPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json index 3471c3e0971..7c727de4177 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkSecurityServerTLSPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json index b0f73441649..adf6ffc2e19 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEdgeCacheKeyset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json index 05152e77d3f..c00681e0a43 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEdgeCacheOrigin", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json index f70a1d1402c..ed1de80f251 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEdgeCacheService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json index 9695bde7b51..139ad357643 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEndpointPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json index d2e4215d76d..1685dbbb1d3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesGRPCRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json index bd50016c1f0..b2ee33f9242 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json index 7ff6265945e..69392b41840 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesHTTPRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json index 55b15769b86..fb442131c0c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesMesh", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json index 27720368b56..e8d566d8c4f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesTCPRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json index 856f6158cad..54e8e22de77 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesTLSRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json index 2891a80c199..5c602118e9b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NotebooksEnvironment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json index 57bca7b16b1..9d3e7df0209 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSConfigGuestPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json index 1e959510d69..254046720ef 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSConfigOSPolicyAssignment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json index 97deadba720..9e918f0d53e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSConfigPatchDeployment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json index 78a0b602c03..37cdca0184e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSLoginSSHPublicKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json index 77701e2242a..4a02c3dfab0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OrgPolicyCustomConstraint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json index e025c1f53fc..d4bf411d7ea 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACAPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json index a75c19613d1..00281ab5dc9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json index 7a7faa54973..9fbacd95da7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACertificateAuthority", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json index 23f2299e0d4..12a71d6aaa1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACertificateTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json index 47474f788da..1aeea551eac 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Project", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json index 30e168446f6..99cb4a85ca0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubLiteReservation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json index 99f8d7df04d..9a988b8a6ec 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubLiteSubscription", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json index e3d6462b26d..215e17ad25b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubLiteTopic", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json index a25445335cd..30a248e8fa6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubSchema", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json index da694fff5ce..61aecc360db 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubSubscription", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json index d1a2e78e755..91fe1716da4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubTopic", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json index 348dda8ac53..0382f5ed4a4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RecaptchaEnterpriseKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json index ae4cbc4e8e9..4c8b59dfa0d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RedisInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json index f1df6f00674..42f0cb2d356 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ResourceManagerLien", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json index b7e278195e2..d2955ce2091 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ResourceManagerPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json index 844792f0e00..9907939f71b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RunJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json index 1f38f092e3b..975f7f680c7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RunService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json index 0f4b8229dc4..a3bd7c7392f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLDatabase", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json index da8d9c2eaa1..06c16ec5dc2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json index 45135dbb709..330d7a46c10 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLSSLCert", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json index 8d866dfbd1c..3b0ebc5ab1f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLUser", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json index 80bcada575d..0990a356a1f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecretManagerSecret", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json index fe03939ad62..baafc6fc582 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecretManagerSecretVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json index 90ce6173504..7f872d1e3d6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecurityCenterNotificationConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json index a47dc6c7fc8..6b61e7e77b1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecurityCenterSource", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json index e9b6cf8391e..27e9a4fb9ce 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Service", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json index ab056cb24f9..792390ae038 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceDirectoryEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json index 7ce2ad5639a..7d0536fe691 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceDirectoryNamespace", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json index 5ffd3cc72ad..9086c60c1ce 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceDirectoryService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json index 761476ccfdb..6e8b22939a8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceIdentity", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json index 36b043f9cc0..68f93002706 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceNetworkingConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json index a0189a2906b..95c9f8be41d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceUsageConsumerQuotaOverride", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json index fd167086abf..1207000a619 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SourceRepoRepository", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json index e238f6d603e..8896e7817f6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SpannerDatabase", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json index 2f50a860617..4c52227d8b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SpannerInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json index 094f4d3dbac..a7f985abad8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json index a7cd3d38bd4..da62cfd734f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageBucketAccessControl", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json index 3b96e4cd91b..1ccfa1b4758 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageDefaultObjectAccessControl", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json index 757e09c79ff..3984836cdea 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageHMACKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json index 4195884bf6e..b0890de1802 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageNotification", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json index bff3a7414cb..53ff8f3caee 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageTransferAgentPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json index 23dc74a3fd8..10592ca645d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageTransferJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json index bbd4e3f73b5..26429b4ddee 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TPUNode", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json index 8e28c05c07b..5c46ec61ea2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsLocationTagBinding", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json index 619c9067062..f7a2924913d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsTagBinding", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json index 7ed5a3af85e..6bafb9efa66 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsTagKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json index ac9f84dbf11..6661edd1553 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsTagValue", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json index f3755799f6a..a3b2e1d47bd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VPCAccessConnector", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json index f852476cd11..4375f626f07 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIDataset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json index 41bc97207ce..ecdb3d97fc2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json index caff44cc641..dc17bc8dfeb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIFeaturestore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json index 8c34662b48d..c5f59505b35 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIFeaturestoreEntityType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json index 470d8f69513..eea2e52205d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIFeaturestoreEntityTypeFeature", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json index c87cb008f9e..f7bd28dac95 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIIndex", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json index 15a43bbd25b..ee1e3801171 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIIndexEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json index d22f8ab1836..5160580a874 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIMetadataStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json index 230dbf6a422..947b579286c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAITensorboard", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json index 8b0adf37927..36fa68eb402 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "WorkflowsWorkflow", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json index 884d16f71ef..3e7320c7a35 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -55,10 +54,9 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "WorkstationsWorkstationCluster", diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json index df160ac1f5f..54d9ecbdc2c 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json index 6b1ed815382..69146d6b02f 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#326de6", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json index 09368a91c6f..cbb262c4d24 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json index 5cb56687485..ae1910c06d5 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json index f18e8afb6b4..4552d15b694 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json @@ -45,7 +45,6 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -55,8 +54,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json b/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json index 189c55a29ff..0c73b22f131 100644 --- a/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json +++ b/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json @@ -45,19 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0C2A79", "secondaryColor": "#5197FF", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", - "svgComplete": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", "svgWhite": "\u003csvg width=\"203\" height=\"360\" viewBox=\"0 0 203 360\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M202.689 180.309C200.689 128.309 186.689 104.309 186.689 104.309C165.689 70.3086 129.689 66.3086 129.689 66.3086L127.199 79.6986L135.689 0.308594H61.6895L76.6895 125.539L99.1895 149.539L122.289 125.539L127.189 79.7786C157.679 85.2486 172.689 107.309 172.689 107.309C187.689 127.309 189.689 177.309 189.689 177.309C157.689 241.309 172.689 273.309 172.689 273.309C154.999 280.199 136.359 298.999 135.779 299.629C154.089 249.049 176.669 183.569 173.569 176.309H168.689V167.309H31.6895V176.309H25.6895C23.8995 186.469 43.1594 249.449 58.9594 298.509C55.7994 295.049 42.6195 281.149 28.6895 273.309C28.6895 273.309 40.6895 234.309 14.6895 177.309C14.6895 177.309 15.6895 131.309 28.6895 108.309C28.6895 108.309 34.6895 89.3086 68.6895 79.3086L64.6895 66.3086C64.6895 66.3086 32.6895 71.3086 14.6895 105.309C14.6895 105.309 2.68945 129.309 0.689453 180.309C0.689453 180.309 28.6895 231.309 14.6895 279.309C14.6895 279.309 58.2694 299.649 77.7694 355.579C78.0294 356.329 78.2895 357.089 78.5395 357.859V357.919L78.6295 358.199V358.309L90.6295 354.309C90.6295 354.309 61.6295 262.309 45.6295 207.309C41.7295 193.879 40.2695 185.829 39.7395 181.309H160.089C159.749 185.609 158.259 193.409 153.569 207.309C134.749 263.049 100.689 354.309 100.689 354.309L113.689 359.309C113.689 359.309 114.899 356.139 116.959 350.629C138.249 299.979 187.669 279.349 187.669 279.349C170.689 233.309 202.689 180.309 202.689 180.309ZM108.689 120.309L99.1895 130.309L89.6895 120.309L76.6895 13.3086H120.579L108.689 120.309Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { diff --git a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json index 82ddfd0e3a4..21c2b5ce024 100644 --- a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json +++ b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json @@ -45,19 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#0C2A79", "secondaryColor": "#5197FF", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", - "svgComplete": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", "svgWhite": "\u003csvg width=\"203\" height=\"360\" viewBox=\"0 0 203 360\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M202.689 180.309C200.689 128.309 186.689 104.309 186.689 104.309C165.689 70.3086 129.689 66.3086 129.689 66.3086L127.199 79.6986L135.689 0.308594H61.6895L76.6895 125.539L99.1895 149.539L122.289 125.539L127.189 79.7786C157.679 85.2486 172.689 107.309 172.689 107.309C187.689 127.309 189.689 177.309 189.689 177.309C157.689 241.309 172.689 273.309 172.689 273.309C154.999 280.199 136.359 298.999 135.779 299.629C154.089 249.049 176.669 183.569 173.569 176.309H168.689V167.309H31.6895V176.309H25.6895C23.8995 186.469 43.1594 249.449 58.9594 298.509C55.7994 295.049 42.6195 281.149 28.6895 273.309C28.6895 273.309 40.6895 234.309 14.6895 177.309C14.6895 177.309 15.6895 131.309 28.6895 108.309C28.6895 108.309 34.6895 89.3086 68.6895 79.3086L64.6895 66.3086C64.6895 66.3086 32.6895 71.3086 14.6895 105.309C14.6895 105.309 2.68945 129.309 0.689453 180.309C0.689453 180.309 28.6895 231.309 14.6895 279.309C14.6895 279.309 58.2694 299.649 77.7694 355.579C78.0294 356.329 78.2895 357.089 78.5395 357.859V357.919L78.6295 358.199V358.309L90.6295 354.309C90.6295 354.309 61.6295 262.309 45.6295 207.309C41.7295 193.879 40.2695 185.829 39.7395 181.309H160.089C159.749 185.609 158.259 193.409 153.569 207.309C134.749 263.049 100.689 354.309 100.689 354.309L113.689 359.309C113.689 359.309 114.899 356.139 116.959 350.629C138.249 299.979 187.669 279.349 187.669 279.349C170.689 233.309 202.689 180.309 202.689 180.309ZM108.689 120.309L99.1895 130.309L89.6895 120.309L76.6895 13.3086H120.579L108.689 120.309Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { diff --git a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json index 322516455bb..94f59469b4a 100644 --- a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json +++ b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json @@ -45,19 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", - "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0C2A79", "secondaryColor": "#5197FF", - "shape": "shield", + "shape": "sheild", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "subCategory": "", "svgColor": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", - "svgComplete": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", + "svgComplete": "", "svgWhite": "\u003csvg width=\"203\" height=\"360\" viewBox=\"0 0 203 360\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M202.689 180.309C200.689 128.309 186.689 104.309 186.689 104.309C165.689 70.3086 129.689 66.3086 129.689 66.3086L127.199 79.6986L135.689 0.308594H61.6895L76.6895 125.539L99.1895 149.539L122.289 125.539L127.189 79.7786C157.679 85.2486 172.689 107.309 172.689 107.309C187.689 127.309 189.689 177.309 189.689 177.309C157.689 241.309 172.689 273.309 172.689 273.309C154.999 280.199 136.359 298.999 135.779 299.629C154.089 249.049 176.669 183.569 173.569 176.309H168.689V167.309H31.6895V176.309H25.6895C23.8995 186.469 43.1594 249.449 58.9594 298.509C55.7994 295.049 42.6195 281.149 28.6895 273.309C28.6895 273.309 40.6895 234.309 14.6895 177.309C14.6895 177.309 15.6895 131.309 28.6895 108.309C28.6895 108.309 34.6895 89.3086 68.6895 79.3086L64.6895 66.3086C64.6895 66.3086 32.6895 71.3086 14.6895 105.309C14.6895 105.309 2.68945 129.309 0.689453 180.309C0.689453 180.309 28.6895 231.309 14.6895 279.309C14.6895 279.309 58.2694 299.649 77.7694 355.579C78.0294 356.329 78.2895 357.089 78.5395 357.859V357.919L78.6295 358.199V358.309L90.6295 354.309C90.6295 354.309 61.6295 262.309 45.6295 207.309C41.7295 193.879 40.2695 185.829 39.7395 181.309H160.089C159.749 185.609 158.259 193.409 153.569 207.309C134.749 263.049 100.689 354.309 100.689 354.309L113.689 359.309C113.689 359.309 114.899 356.139 116.959 350.629C138.249 299.979 187.669 279.349 187.669 279.349C170.689 233.309 202.689 180.309 202.689 180.309ZM108.689 120.309L99.1895 130.309L89.6895 120.309L76.6895 13.3086H120.579L108.689 120.309Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { diff --git a/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json b/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json index fe6ebd555fc..5b0d2dee97b 100644 --- a/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json +++ b/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json @@ -36,7 +36,7 @@ "relationships": null }, "metadata": { - "capabilities": "{\n \"designer\": {\n \"pass-events-to\": \"parent\", \"supportsCompoundDragAndDrop\":false,\n \"edit\": {\n \"config\": false,\n \"copy\": false,\n \"delete\": false,\n \"duplicate\": false,\n \"reset-styles\": false,\n \"resolve\": false,\n \"lock\": false,\n \"shape\": {\n \"convert-shape\": false\n },\n \"style\": false\n },\n \"label\": {\n \"edit\": false,\n \"show\": false,\n \"sync-with-config-property\": \"none\"\n }\n }\n}", + "capabilities": "{\n \"designer\": {\n \"pass-events-to\": \"parent\",\n \"edit\": {\n \"config\": false,\n \"copy\": false,\n \"delete\": false,\n \"duplicate\": false,\n \"reset-styles\": false,\n \"resolve\": false,\n \"lock\": false,\n \"shape\": {\n \"convert-shape\": false\n },\n \"style\": false\n },\n \"label\": {\n \"edit\": false,\n \"show\": false,\n \"sync-with-config-property\": \"none\"\n }\n }\n}", "defaultData": "{\"label\":\"\"}", "genealogy": "parent", "isAnnotation": true, @@ -45,8 +45,8 @@ "shape": "round-rectangle", "shapePolygonPoints": "", "status": "enabled", - "styleOverrides": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0,\"data\":{\"label\":\"\"}}", - "styles": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0}", + "styleOverrides": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0.1,\"data\":{\"label\":\"\"}}", + "styles": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0.1}", "subCategory": "", "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect x=\"1.5\" y=\"1\" width=\"38\" height=\"38\" fill=\"#00B39F\" fill-opacity=\"0.1\" stroke=\"#00B39F\" stroke-miterlimit=\"10\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", From 736b79478fbd1db060c5f2776b49726d8d4a7bd9 Mon Sep 17 00:00:00 2001 From: MUzairS15 Date: Sat, 8 Jun 2024 00:15:59 +0000 Subject: [PATCH 15/15] Models updated Signed-off-by: l5io --- .../v1.0.0/components/AzureAssignedIdentity.json | 8 +++++--- .../4.1.18/v1.0.0/components/AzureIdentity.json | 8 +++++--- .../v1.0.0/components/AzureIdentityBinding.json | 8 +++++--- .../v1.0.0/components/AzurePodIdentityException.json | 8 +++++--- .../ace/2024.6.3/v1.0.0/components/ExternalDNS.json | 6 ++++-- .../ace/2024.6.3/v1.0.0/components/Plan.json | 6 ++++-- .../ace/2024.6.3/v1.0.0/components/Product.json | 6 ++++-- .../ace/2024.6.3/v1.0.0/components/Trickster.json | 6 ++++-- .../2024.6.3/v1.0.0/components/TricksterBackend.json | 6 ++++-- .../2024.6.3/v1.0.0/components/TricksterCache.json | 6 ++++-- .../v1.0.0/components/TricksterRequestRewriter.json | 6 ++++-- .../2024.6.3/v1.0.0/components/TricksterRule.json | 6 ++++-- .../v1.0.0/components/TricksterTracingConfig.json | 6 ++++-- .../components/HorizontalRunnerAutoscaler.json | 4 +++- .../0.1.2/v1.0.0/components/Runner.json | 4 +++- .../0.1.2/v1.0.0/components/RunnerDeployment.json | 4 +++- .../0.1.2/v1.0.0/components/RunnerReplicaSet.json | 4 +++- .../0.1.2/v1.0.0/components/RunnerSet.json | 4 +++- .../v1.0.0/components/AdminConsole.json | 4 +++- .../3.3.0/v1.0.0/components/AerospikeCluster.json | 6 ++++-- .../0.1.0/v1.0.0/components/AIPodAutoscaler.json | 6 ++++-- .../0.12.55/v1.0.0/components/Configuration.json | 6 ++++-- .../akri/0.12.55/v1.0.0/components/Instance.json | 6 ++++-- .../v1.0.0/components/AzureAssignedIdentity.json | 2 ++ .../1.0.0-rc1/v1.0.0/components/AzureIdentity.json | 2 ++ .../v1.0.0/components/AzureIdentityBinding.json | 2 ++ .../v1.0.0/components/AzurePodIdentityException.json | 2 ++ .../v1.0.0/components/ClickHouseInstallation.json | 2 ++ .../components/ClickHouseInstallationTemplate.json | 2 ++ .../components/ClickHouseKeeperInstallation.json | 2 ++ .../components/ClickHouseOperatorConfiguration.json | 2 ++ .../0.13.0/v1.0.0/components/NodeFeature.json | 4 +++- .../0.13.0/v1.0.0/components/NodeFeatureRule.json | 4 +++- .../2.0.0/v1.0.0/components/AntreaAgentInfo.json | 4 +++- .../v1.0.0/components/AntreaControllerInfo.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/ClusterGroup.json | 4 +++- .../v1.0.0/components/ClusterNetworkPolicy.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/Egress.json | 4 +++- .../2.0.0/v1.0.0/components/ExternalEntity.json | 4 +++- .../2.0.0/v1.0.0/components/ExternalIPPool.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/ExternalNode.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/Group.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/IPPool.json | 4 +++- .../2.0.0/v1.0.0/components/NetworkPolicy.json | 4 +++- .../v1.0.0/components/SupportBundleCollection.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/Tier.json | 4 +++- .../antrea/2.0.0/v1.0.0/components/Traceflow.json | 4 +++- .../2.0.0/v1.0.0/components/TrafficControl.json | 4 +++- .../0.3.0/v1.0.0/components/Chaos.json | 4 +++- .../0.3.0/v1.0.0/components/ComputeNode.json | 6 ++++-- .../0.3.0/v1.0.0/components/ShardingSphereProxy.json | 6 ++++-- .../components/ShardingSphereProxyServerConfig.json | 6 ++++-- .../0.3.0/v1.0.0/components/StorageNode.json | 4 +++- .../0.3.0/v1.0.0/components/StorageProvider.json | 4 +++- .../2.34.0/v1.0.0/components/Agent.json | 4 +++- .../2.34.0/v1.0.0/components/Controller.json | 4 +++- .../2.34.0/v1.0.0/components/Policy.json | 4 +++- .../v1.0.0/components/ApisixClusterConfig.json | 4 +++- .../0.14.0/v1.0.0/components/ApisixConsumer.json | 4 +++- .../0.14.0/v1.0.0/components/ApisixGlobalRule.json | 4 +++- .../0.14.0/v1.0.0/components/ApisixPluginConfig.json | 4 +++- .../0.14.0/v1.0.0/components/ApisixRoute.json | 4 +++- .../0.14.0/v1.0.0/components/ApisixTls.json | 4 +++- .../0.14.0/v1.0.0/components/ApisixUpstream.json | 4 +++- .../3.2.2/v1.0.0/components/ApisixClusterConfig.json | 10 ++++++---- .../3.2.2/v1.0.0/components/ApisixConsumer.json | 8 +++++--- .../3.2.2/v1.0.0/components/ApisixGlobalRule.json | 8 +++++--- .../3.2.2/v1.0.0/components/ApisixPluginConfig.json | 8 +++++--- .../apisix/3.2.2/v1.0.0/components/ApisixRoute.json | 6 ++++-- .../apisix/3.2.2/v1.0.0/components/ApisixTls.json | 8 +++++--- .../3.2.2/v1.0.0/components/ApisixUpstream.json | 8 +++++--- .../0.8.3/v1.0.0/components/Application.json | 6 ++++-- .../1.13.0/v1.0.0/components/BackendGroup.json | 2 ++ .../1.13.0/v1.0.0/components/GatewayRoute.json | 2 ++ .../1.13.0/v1.0.0/components/Mesh.json | 2 ++ .../1.13.0/v1.0.0/components/VirtualGateway.json | 2 ++ .../1.13.0/v1.0.0/components/VirtualNode.json | 2 ++ .../1.13.0/v1.0.0/components/VirtualRouter.json | 2 ++ .../1.13.0/v1.0.0/components/VirtualService.json | 2 ++ .../0.5.0/v1.0.0/components/AppProject.json | 6 ++++-- .../0.5.0/v1.0.0/components/Application.json | 6 ++++-- .../0.5.0/v1.0.0/components/ApplicationSet.json | 6 ++++-- .../0.5.0/v1.0.0/components/ArgoCD.json | 4 +++- .../0.5.0/v1.0.0/components/ArgoCDExport.json | 4 +++- .../1.8.11/v1.0.0/components/ArmoryAccount.json | 4 +++- .../1.8.11/v1.0.0/components/SpinnakerService.json | 4 +++- .../0.1.2/v1.0.0/components/AWSAPIGateway.json | 6 ++++-- .../v1.0.12/v1.0.0/components/API.json | 4 +++- .../v1.0.12/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.12/v1.0.0/components/Authorizer.json | 4 +++- .../v1.0.12/v1.0.0/components/Deployment.json | 4 +++- .../v1.0.12/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.12/v1.0.0/components/Integration.json | 4 +++- .../v1.0.12/v1.0.0/components/Route.json | 4 +++- .../v1.0.12/v1.0.0/components/Stage.json | 4 +++- .../v1.0.12/v1.0.0/components/VPCLink.json | 4 +++- .../v1.0.14/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.14/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.14/v1.0.0/components/ScalableTarget.json | 4 +++- .../v1.0.14/v1.0.0/components/ScalingPolicy.json | 6 ++++-- .../v0.0.11/v1.0.0/components/AdoptedResource.json | 8 +++++--- .../v0.0.11/v1.0.0/components/CachePolicy.json | 10 ++++++---- .../v0.0.11/v1.0.0/components/Distribution.json | 10 ++++++---- .../v0.0.11/v1.0.0/components/FieldExport.json | 8 +++++--- .../v0.0.11/v1.0.0/components/Function.json | 10 ++++++---- .../v1.0.0/components/OriginRequestPolicy.json | 10 ++++++---- .../v1.0.0/components/ResponseHeadersPolicy.json | 10 ++++++---- .../v1.0.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.11/v1.0.0/components/EventDataStore.json | 4 +++- .../v1.0.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.11/v1.0.0/components/Trail.json | 4 +++- .../v0.0.8/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.8/v1.0.0/components/FieldExport.json | 4 +++- .../v0.0.8/v1.0.0/components/MetricAlarm.json | 4 +++- .../v0.0.8/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.8/v1.0.0/components/FieldExport.json | 4 +++- .../v0.0.8/v1.0.0/components/LogGroup.json | 4 +++- .../v0.0.6/v1.0.0/components/AdoptedResource.json | 2 ++ .../v0.0.6/v1.0.0/components/DBCluster.json | 2 ++ .../v0.0.6/v1.0.0/components/DBInstance.json | 2 ++ .../v0.0.6/v1.0.0/components/DBSubnetGroup.json | 2 ++ .../v0.0.6/v1.0.0/components/FieldExport.json | 2 ++ .../v1.2.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.2.11/v1.0.0/components/Backup.json | 4 +++- .../v1.2.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.2.11/v1.0.0/components/GlobalTable.json | 4 +++- .../v1.2.11/v1.0.0/components/Table.json | 4 +++- .../v1.2.10/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.2.10/v1.0.0/components/DHCPOptions.json | 4 +++- .../v1.2.10/v1.0.0/components/ElasticIPAddress.json | 4 +++- .../v1.2.10/v1.0.0/components/FieldExport.json | 4 +++- .../v1.2.10/v1.0.0/components/FlowLog.json | 4 +++- .../v1.2.10/v1.0.0/components/Instance.json | 4 +++- .../v1.2.10/v1.0.0/components/InternetGateway.json | 4 +++- .../v1.2.10/v1.0.0/components/NATGateway.json | 4 +++- .../v1.2.10/v1.0.0/components/NetworkACL.json | 4 +++- .../v1.2.10/v1.0.0/components/RouteTable.json | 4 +++- .../v1.2.10/v1.0.0/components/SecurityGroup.json | 4 +++- .../v1.2.10/v1.0.0/components/Subnet.json | 4 +++- .../v1.2.10/v1.0.0/components/TransitGateway.json | 4 +++- .../v1.2.10/v1.0.0/components/VPC.json | 4 +++- .../v1.2.10/v1.0.0/components/VPCEndpoint.json | 4 +++- .../components/VPCEndpointServiceConfiguration.json | 6 ++++-- .../v1.0.0/components/VPCPeeringConnection.json | 4 +++- .../v1.0.15/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.15/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.0/components/PullThroughCacheRule.json | 4 +++- .../v1.0.15/v1.0.0/components/Repository.json | 4 +++- .../v0.0.6/v1.0.0/components/AdoptedResource.json | 2 ++ .../v0.0.6/v1.0.0/components/Cluster.json | 2 ++ .../v0.0.6/v1.0.0/components/FieldExport.json | 2 ++ .../v0.0.6/v1.0.0/components/Service.json | 2 ++ .../v0.0.6/v1.0.0/components/TaskDefinition.json | 2 ++ .../v0.0.7/v1.0.0/components/AccessPoint.json | 6 ++++-- .../v0.0.7/v1.0.0/components/AdoptedResource.json | 6 ++++-- .../v0.0.7/v1.0.0/components/FieldExport.json | 6 ++++-- .../v0.0.7/v1.0.0/components/FileSystem.json | 6 ++++-- .../v0.0.7/v1.0.0/components/MountTarget.json | 6 ++++-- .../v1.4.1/v1.0.0/components/AccessEntry.json | 6 ++++-- .../v1.4.1/v1.0.0/components/Addon.json | 4 +++- .../v1.4.1/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.4.1/v1.0.0/components/Cluster.json | 4 +++- .../v1.4.1/v1.0.0/components/FargateProfile.json | 4 +++- .../v1.4.1/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.0/components/IdentityProviderConfig.json | 6 ++++-- .../v1.4.1/v1.0.0/components/Nodegroup.json | 4 +++- .../v1.0.0/components/PodIdentityAssociation.json | 4 +++- .../v0.0.30/v1.0.0/components/AdoptedResource.json | 6 ++++-- .../v1.0.0/components/CacheParameterGroup.json | 6 ++++-- .../v0.0.30/v1.0.0/components/CacheSubnetGroup.json | 6 ++++-- .../v0.0.30/v1.0.0/components/FieldExport.json | 6 ++++-- .../v0.0.30/v1.0.0/components/ReplicationGroup.json | 6 ++++-- .../v0.0.30/v1.0.0/components/Snapshot.json | 6 ++++-- .../v0.0.30/v1.0.0/components/User.json | 6 ++++-- .../v0.0.30/v1.0.0/components/UserGroup.json | 6 ++++-- .../v0.0.2/v1.0.0/components/AdoptedResource.json | 6 ++++-- .../v1.0.0/components/ElasticsearchDomain.json | 6 ++++-- .../v1.0.10/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.10/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.10/v1.0.0/components/JobRun.json | 4 +++- .../v1.0.10/v1.0.0/components/VirtualCluster.json | 4 +++- .../v1.0.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.11/v1.0.0/components/Archive.json | 4 +++- .../v1.0.11/v1.0.0/components/Endpoint.json | 4 +++- .../v1.0.11/v1.0.0/components/EventBus.json | 4 +++- .../v1.0.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.11/v1.0.0/components/Rule.json | 4 +++- .../v1.3.8/v1.0.0/components/AdoptedResource.json | 6 ++++-- .../v1.3.8/v1.0.0/components/FieldExport.json | 6 ++++-- .../v1.3.8/v1.0.0/components/Group.json | 6 ++++-- .../v1.3.8/v1.0.0/components/InstanceProfile.json | 6 ++++-- .../v1.0.0/components/OpenIDConnectProvider.json | 6 ++++-- .../v1.3.8/v1.0.0/components/Policy.json | 6 ++++-- .../v1.3.8/v1.0.0/components/Role.json | 6 ++++-- .../v1.3.8/v1.0.0/components/User.json | 6 ++++-- .../v0.0.15/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.15/v1.0.0/components/FieldExport.json | 4 +++- .../v0.0.15/v1.0.0/components/Stream.json | 4 +++- .../v1.0.13/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.13/v1.0.0/components/Alias.json | 4 +++- .../v1.0.13/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.13/v1.0.0/components/Grant.json | 4 +++- .../v1.0.13/v1.0.0/components/Key.json | 4 +++- .../v1.5.0/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.5.0/v1.0.0/components/Alias.json | 6 ++++-- .../v1.5.0/v1.0.0/components/CodeSigningConfig.json | 4 +++- .../v1.5.0/v1.0.0/components/EventSourceMapping.json | 4 +++- .../v1.5.0/v1.0.0/components/FieldExport.json | 4 +++- .../v1.5.0/v1.0.0/components/Function.json | 4 +++- .../v1.5.0/v1.0.0/components/FunctionURLConfig.json | 4 +++- .../v1.5.0/v1.0.0/components/LayerVersion.json | 4 +++- .../v1.5.0/v1.0.0/components/Version.json | 6 ++++-- .../v1.0.2/v1.0.0/components/ACL.json | 4 +++- .../v1.0.2/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.2/v1.0.0/components/Cluster.json | 4 +++- .../v1.0.2/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.2/v1.0.0/components/ParameterGroup.json | 4 +++- .../v1.0.2/v1.0.0/components/Snapshot.json | 4 +++- .../v1.0.2/v1.0.0/components/SubnetGroup.json | 4 +++- .../v1.0.2/v1.0.0/components/User.json | 4 +++- .../v0.0.34/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.34/v1.0.0/components/Broker.json | 4 +++- .../v0.0.34/v1.0.0/components/FieldExport.json | 4 +++- .../0.2.0/v1.0.0/components/Terminator.json | 2 ++ .../v0.0.25/v1.0.0/components/AdoptedResource.json | 2 ++ .../v0.0.25/v1.0.0/components/Domain.json | 2 ++ .../v0.0.25/v1.0.0/components/FieldExport.json | 2 ++ .../v1.2.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.0/components/AlertManagerDefinition.json | 4 +++- .../v1.2.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.0/components/LoggingConfiguration.json | 4 +++- .../v1.0.0/components/RuleGroupsNamespace.json | 4 +++- .../v1.2.11/v1.0.0/components/Workspace.json | 4 +++- .../v1.2.5/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.2.5/v1.0.0/components/DBCluster.json | 4 +++- .../v1.0.0/components/DBClusterParameterGroup.json | 4 +++- .../v1.2.5/v1.0.0/components/DBInstance.json | 4 +++- .../v1.2.5/v1.0.0/components/DBParameterGroup.json | 4 +++- .../v1.2.5/v1.0.0/components/DBProxy.json | 4 +++- .../v1.2.5/v1.0.0/components/DBSubnetGroup.json | 4 +++- .../v1.2.5/v1.0.0/components/FieldExport.json | 4 +++- .../v1.2.5/v1.0.0/components/GlobalCluster.json | 4 +++- .../v0.0.14/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.14/v1.0.0/components/FieldExport.json | 4 +++- .../v0.0.14/v1.0.0/components/HealthCheck.json | 6 ++++-- .../v0.0.14/v1.0.0/components/HostedZone.json | 4 +++- .../v0.0.14/v1.0.0/components/RecordSet.json | 4 +++- .../v0.0.7/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.7/v1.0.0/components/FieldExport.json | 4 +++- .../v0.0.7/v1.0.0/components/ResolverEndpoint.json | 4 +++- .../v0.0.7/v1.0.0/components/ResolverRule.json | 4 +++- .../v1.0.12/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.12/v1.0.0/components/Bucket.json | 4 +++- .../v1.0.12/v1.0.0/components/FieldExport.json | 4 +++- .../v1.2.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.2.11/v1.0.0/components/App.json | 4 +++- .../v1.0.0/components/DataQualityJobDefinition.json | 4 +++- .../v1.2.11/v1.0.0/components/Domain.json | 4 +++- .../v1.2.11/v1.0.0/components/Endpoint.json | 4 +++- .../v1.2.11/v1.0.0/components/EndpointConfig.json | 4 +++- .../v1.2.11/v1.0.0/components/FeatureGroup.json | 4 +++- .../v1.2.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.0/components/HyperParameterTuningJob.json | 4 +++- .../v1.0.0/components/InferenceComponent.json | 8 +++++--- .../v1.2.11/v1.0.0/components/Model.json | 4 +++- .../v1.0.0/components/ModelBiasJobDefinition.json | 4 +++- .../components/ModelExplainabilityJobDefinition.json | 4 +++- .../v1.2.11/v1.0.0/components/ModelPackage.json | 4 +++- .../v1.2.11/v1.0.0/components/ModelPackageGroup.json | 4 +++- .../v1.0.0/components/ModelQualityJobDefinition.json | 4 +++- .../v1.0.0/components/MonitoringSchedule.json | 4 +++- .../v1.2.11/v1.0.0/components/NotebookInstance.json | 4 +++- .../components/NotebookInstanceLifecycleConfig.json | 4 +++- .../v1.2.11/v1.0.0/components/Pipeline.json | 4 +++- .../v1.2.11/v1.0.0/components/PipelineExecution.json | 4 +++- .../v1.2.11/v1.0.0/components/ProcessingJob.json | 4 +++- .../v1.2.11/v1.0.0/components/TrainingJob.json | 4 +++- .../v1.2.11/v1.0.0/components/TransformJob.json | 4 +++- .../v1.2.11/v1.0.0/components/UserProfile.json | 4 +++- .../v0.0.7/v1.0.0/components/AdoptedResource.json | 4 +++- .../v0.0.7/v1.0.0/components/FieldExport.json | 4 +++- .../v0.0.7/v1.0.0/components/Secret.json | 4 +++- .../v1.0.11/v1.0.0/components/Activity.json | 4 +++- .../v1.0.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.11/v1.0.0/components/StateMachine.json | 4 +++- .../v1.0.11/v1.0.0/components/AdoptedResource.json | 4 +++- .../v1.0.11/v1.0.0/components/FieldExport.json | 4 +++- .../v1.0.0/components/PlatformApplication.json | 4 +++- .../v1.0.11/v1.0.0/components/PlatformEndpoint.json | 4 +++- .../v1.0.11/v1.0.0/components/Subscription.json | 4 +++- .../v1.0.11/v1.0.0/components/Topic.json | 4 +++- .../v1.0.13/v1.0.0/components/AdoptedResource.json | 10 ++++++---- .../v1.0.13/v1.0.0/components/FieldExport.json | 10 ++++++---- .../v1.0.13/v1.0.0/components/Queue.json | 10 ++++++---- .../0.1.0/v1.0.0/components/TargetGroupBinding.json | 6 ++++-- .../1.18.2/v1.0.0/components/ENIConfig.json | 6 ++++-- .../1.18.2/v1.0.0/components/PolicyEndpoint.json | 4 +++- .../awx-operator/2.18.0/v1.0.0/components/AWX.json | 4 +++- .../2.18.0/v1.0.0/components/AWXBackup.json | 6 ++++-- .../2.18.0/v1.0.0/components/AWXMeshIngress.json | 4 +++- .../2.18.0/v1.0.0/components/AWXRestore.json | 4 +++- .../6.7.9/v1.0.0/components/AuthService.json | 2 ++ .../6.7.9/v1.0.0/components/ConsulResolver.json | 2 ++ .../6.7.9/v1.0.0/components/DevPortal.json | 2 ++ .../6.7.9/v1.0.0/components/Filter.json | 2 ++ .../6.7.9/v1.0.0/components/FilterPolicy.json | 2 ++ .../azureorkestra/6.7.9/v1.0.0/components/Host.json | 2 ++ .../components/KubernetesEndpointResolver.json | 2 ++ .../v1.0.0/components/KubernetesServiceResolver.json | 2 ++ .../6.7.9/v1.0.0/components/LogService.json | 2 ++ .../6.7.9/v1.0.0/components/Mapping.json | 2 ++ .../6.7.9/v1.0.0/components/Module.json | 2 ++ .../6.7.9/v1.0.0/components/Project.json | 2 ++ .../6.7.9/v1.0.0/components/ProjectController.json | 2 ++ .../6.7.9/v1.0.0/components/ProjectRevision.json | 2 ++ .../6.7.9/v1.0.0/components/RateLimit.json | 2 ++ .../6.7.9/v1.0.0/components/RateLimitService.json | 2 ++ .../6.7.9/v1.0.0/components/TCPMapping.json | 2 ++ .../6.7.9/v1.0.0/components/TLSContext.json | 2 ++ .../6.7.9/v1.0.0/components/TracingService.json | 2 ++ .../40.1.1/v1.0.0/components/Alertmanager.json | 2 ++ .../40.1.1/v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../40.1.1/v1.0.0/components/Certificate.json | 2 ++ .../40.1.1/v1.0.0/components/CertificateRequest.json | 2 ++ .../40.1.1/v1.0.0/components/Challenge.json | 2 ++ .../40.1.1/v1.0.0/components/ClusterIssuer.json | 2 ++ .../40.1.1/v1.0.0/components/Issuer.json | 2 ++ .../base-cluster/40.1.1/v1.0.0/components/Order.json | 2 ++ .../40.1.1/v1.0.0/components/PodMonitor.json | 2 ++ .../base-cluster/40.1.1/v1.0.0/components/Probe.json | 2 ++ .../40.1.1/v1.0.0/components/Prometheus.json | 2 ++ .../40.1.1/v1.0.0/components/PrometheusRule.json | 2 ++ .../40.1.1/v1.0.0/components/ServiceMonitor.json | 2 ++ .../40.1.1/v1.0.0/components/ThanosRuler.json | 2 ++ .../v1.0.0/components/AuthorizationPolicy.json | 6 ++++-- .../1.22.1/v1.0.0/components/DestinationRule.json | 2 ++ .../base/1.22.1/v1.0.0/components/EnvoyFilter.json | 2 ++ .../base/1.22.1/v1.0.0/components/Gateway.json | 2 ++ .../1.22.1/v1.0.0/components/PeerAuthentication.json | 2 ++ .../base/1.22.1/v1.0.0/components/ProxyConfig.json | 2 ++ .../v1.0.0/components/RequestAuthentication.json | 6 ++++-- .../base/1.22.1/v1.0.0/components/ServiceEntry.json | 2 ++ .../base/1.22.1/v1.0.0/components/Sidecar.json | 2 ++ .../base/1.22.1/v1.0.0/components/Telemetry.json | 2 ++ .../1.22.1/v1.0.0/components/VirtualService.json | 2 ++ .../base/1.22.1/v1.0.0/components/WasmPlugin.json | 2 ++ .../base/1.22.1/v1.0.0/components/WorkloadEntry.json | 2 ++ .../base/1.22.1/v1.0.0/components/WorkloadGroup.json | 2 ++ .../1.8.15/v1.0.0/components/AccountBinding.json | 6 ++++-- .../bitpoke/1.8.15/v1.0.0/components/Invite.json | 6 ++++-- .../1.8.15/v1.0.0/components/MySQLDatabase.json | 6 ++++-- .../bitpoke/1.8.15/v1.0.0/components/MySQLUser.json | 6 ++++-- .../bitpoke/1.8.15/v1.0.0/components/Project.json | 6 ++++-- .../0.12.0/v1.0.0/components/BitwardenSecret.json | 2 ++ .../0.12.0/v1.0.0/components/BitwardenTemplate.json | 2 ++ .../0.12.0/v1.0.0/components/RegistryCredential.json | 2 ++ .../0.3.0/v1.0.0/components/BottlerocketShadow.json | 6 ++++-- .../0.1.6/v1.0.0/components/Backup.json | 6 ++++-- .../0.1.6/v1.0.0/components/Restore.json | 6 ++++-- .../1.0.0-alpha1/v1.0.0/components/Bundle.json | 6 ++++-- .../2022.4.14/v1.0.0/components/CloudProvider.json | 6 ++++-- .../v1.0.0/components/ClusterAuthInfoTemplate.json | 2 ++ .../2022.4.14/v1.0.0/components/ClusterInfo.json | 2 ++ .../2022.4.14/v1.0.0/components/ClusterUserAuth.json | 2 ++ .../2022.4.14/v1.0.0/components/Credential.json | 2 ++ .../2022.4.14/v1.0.0/components/EditorOption.json | 6 ++++-- .../2022.4.14/v1.0.0/components/MachineType.json | 6 ++++-- .../2022.4.14/v1.0.0/components/OptionsEditor.json | 6 ++++-- .../2022.4.14/v1.0.0/components/OrgUser.json | 6 ++++-- .../2022.4.14/v1.0.0/components/Plan.json | 6 ++++-- .../2022.4.14/v1.0.0/components/Product.json | 6 ++++-- .../2022.4.14/v1.0.0/components/Team.json | 6 ++++-- .../2022.4.14/v1.0.0/components/TeamUser.json | 6 ++++-- .../camel-k/2.0.1/v1.0.0/components/Build.json | 6 ++++-- .../2.0.1/v1.0.0/components/CamelCatalog.json | 4 +++- .../camel-k/2.0.1/v1.0.0/components/Integration.json | 6 ++++-- .../2.0.1/v1.0.0/components/IntegrationKit.json | 6 ++++-- .../2.0.1/v1.0.0/components/IntegrationPlatform.json | 6 ++++-- .../camel-k/2.0.1/v1.0.0/components/Kamelet.json | 6 ++++-- .../2.0.1/v1.0.0/components/KameletBinding.json | 6 ++++-- .../0.1.16/v1.0.0/components/Canary.json | 6 ++++-- .../v1.0.0/components/CapsuleConfiguration.json | 6 ++++-- .../v1.0.0/components/GlobalTenantResource.json | 6 ++++-- .../0.7.0-rc.1/v1.0.0/components/ProxySetting.json | 6 ++++-- .../capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json | 6 ++++-- .../0.7.0-rc.1/v1.0.0/components/TenantResource.json | 6 ++++-- .../v1.0.0/components/CassandraDatacenter.json | 2 ++ .../0.52.1/v1.0.0/components/CassandraTask.json | 2 ++ .../v1.0.0/components/CDPipeline.json | 4 +++- .../2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json | 4 +++- .../2024.5.17/v1.0.0/components/CAProviderClass.json | 4 +++- .../chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/AzureChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/BlockChaos.json | 8 +++++--- .../chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json | 6 ++++-- .../chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/HTTPChaos.json | 6 ++++-- .../chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json | 6 ++++-- .../chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/KernelChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/NetworkChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/PhysicalMachine.json | 6 ++++-- .../v1.0.0/components/PhysicalMachineChaos.json | 6 ++++-- .../chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/PodHttpChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/PodIOChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/PodNetworkChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/RemoteCluster.json | 8 +++++--- .../chaos-mesh/2.6.3/v1.0.0/components/Schedule.json | 6 ++++-- .../2.6.3/v1.0.0/components/StatusCheck.json | 6 ++++-- .../2.6.3/v1.0.0/components/StressChaos.json | 6 ++++-- .../2.6.3/v1.0.0/components/TimeChaos.json | 6 ++++-- .../chaos-mesh/2.6.3/v1.0.0/components/Workflow.json | 6 ++++-- .../2.6.3/v1.0.0/components/WorkflowNode.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/AWSChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/AzureChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/DNSChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/GCPChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/HTTPChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/IOChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/JVMChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/KernelChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/NetworkChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PhysicalMachine.json | 6 ++++-- .../v1.0.0/components/PhysicalMachineChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/PodChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PodHttpChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/PodIOChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PodNetworkChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/Schedule.json | 6 ++++-- .../14.6.301/v1.0.0/components/StatusCheck.json | 6 ++++-- .../14.6.301/v1.0.0/components/StressChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/TimeChaos.json | 6 ++++-- .../chaos/14.6.301/v1.0.0/components/Workflow.json | 6 ++++-- .../14.6.301/v1.0.0/components/WorkflowNode.json | 6 ++++-- .../1.7.0/v1.0.0/components/ChaosBlade.json | 6 ++++-- .../1.2.0/v1.0.0/components/Environment.json | 6 ++++-- .../1.2.0/v1.0.0/components/GitRepository.json | 6 ++++-- .../1.2.0/v1.0.0/components/HNCConfiguration.json | 6 ++++-- .../v1.0.0/components/HierarchyConfiguration.json | 6 ++++-- .../1.2.0/v1.0.0/components/SubnamespaceAnchor.json | 6 ++++-- .../0.1.1/v1.0.0/components/ClusterObjectSync.json | 6 ++++-- .../cloudcore/0.1.1/v1.0.0/components/Device.json | 6 ++++-- .../0.1.1/v1.0.0/components/DeviceModel.json | 6 ++++-- .../0.1.1/v1.0.0/components/EdgeApplication.json | 6 ++++-- .../cloudcore/0.1.1/v1.0.0/components/NodeGroup.json | 6 ++++-- .../0.1.1/v1.0.0/components/ObjectSync.json | 6 ++++-- .../cloudcore/0.1.1/v1.0.0/components/Rule.json | 6 ++++-- .../0.1.1/v1.0.0/components/RuleEndpoint.json | 6 ++++-- .../0.2.0/v1.0.0/components/CloudflareTunnel.json | 6 ++++-- .../0.11.2/v1.0.0/components/Alertmanager.json | 2 ++ .../0.11.2/v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../0.11.2/v1.0.0/components/PodMonitor.json | 2 ++ .../cloudman/0.11.2/v1.0.0/components/Probe.json | 2 ++ .../0.11.2/v1.0.0/components/Prometheus.json | 2 ++ .../0.11.2/v1.0.0/components/PrometheusRule.json | 2 ++ .../0.11.2/v1.0.0/components/ServiceMonitor.json | 2 ++ .../0.11.2/v1.0.0/components/ThanosRuler.json | 2 ++ .../0.1.1/v1.0.0/components/Alertmanager.json | 2 ++ .../0.1.1/v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../0.1.1/v1.0.0/components/IngressClassParams.json | 6 ++++-- .../0.1.1/v1.0.0/components/PodMonitor.json | 2 ++ .../0.1.1/v1.0.0/components/Probe.json | 2 ++ .../0.1.1/v1.0.0/components/Prometheus.json | 2 ++ .../0.1.1/v1.0.0/components/PrometheusRule.json | 2 ++ .../0.1.1/v1.0.0/components/ServiceMonitor.json | 2 ++ .../0.1.1/v1.0.0/components/TargetGroupBinding.json | 2 ++ .../0.1.1/v1.0.0/components/ThanosRuler.json | 2 ++ .../0.2.12/v1.0.0/components/Cluster.json | 6 ++++-- .../0.2.12/v1.0.0/components/ClusterFeature.json | 6 ++++-- .../0.2.12/v1.0.0/components/ResourceSyncRule.json | 6 ++++-- .../0.13.0/v1.0.0/components/ServiceExport.json | 2 ++ .../0.13.0/v1.0.0/components/ServiceImport.json | 2 ++ .../0.4.1/v1.0.0/components/ClusterSecret.json | 6 ++++-- .../0.1.0/v1.0.0/components/IPAMBlock.json | 6 ++++-- .../0.1.0/v1.0.0/components/IPAMHandle.json | 6 ++++-- .../cni-hostnic/0.1.0/v1.0.0/components/IPPool.json | 6 ++++-- .../0.1.0/v1.0.0/components/VxNetPool.json | 6 ++++-- .../meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/KafkaBridge.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/KafkaConnect.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/KafkaConnector.json | 6 ++++-- .../1.1.0/v1.0.0/components/KafkaMirrorMaker.json | 6 ++++-- .../1.1.0/v1.0.0/components/KafkaMirrorMaker2.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/KafkaRebalance.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/KafkaTopic.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/KafkaUser.json | 6 ++++-- .../cno/1.1.0/v1.0.0/components/StrimziPodSet.json | 6 ++++-- .../0.6.1/v1.0.0/components/Alertmanager.json | 6 ++++-- .../0.6.1/v1.0.0/components/AlertmanagerConfig.json | 6 ++++-- .../0.6.1/v1.0.0/components/PodMonitor.json | 6 ++++-- .../cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json | 6 ++++-- .../0.6.1/v1.0.0/components/Prometheus.json | 6 ++++-- .../0.6.1/v1.0.0/components/PrometheusRule.json | 6 ++++-- .../0.6.1/v1.0.0/components/ServiceMonitor.json | 6 ++++-- .../0.6.1/v1.0.0/components/ThanosRuler.json | 6 ++++-- .../0.1.0/v1.0.0/components/CrdbCluster.json | 2 ++ .../2.22.1/v1.0.0/components/CDStageDeploy.json | 2 ++ .../2.22.1/v1.0.0/components/Codebase.json | 2 ++ .../2.22.1/v1.0.0/components/CodebaseBranch.json | 2 ++ .../v1.0.0/components/CodebaseImageStream.json | 2 ++ .../2.22.1/v1.0.0/components/EDPComponent.json | 10 ++++++---- .../2.22.1/v1.0.0/components/GitServer.json | 2 ++ .../2.22.1/v1.0.0/components/JiraIssueMetadata.json | 2 ++ .../2.22.1/v1.0.0/components/JiraServer.json | 2 ++ .../2.22.1/v1.0.0/components/QuickLink.json | 10 ++++++---- .../2.22.1/v1.0.0/components/Template.json | 6 ++++-- .../components/PubSubSubscriptionTemplate.json | 6 ++++-- .../0.0.5/v1.0.0/components/PubSubTopicTemplate.json | 6 ++++-- .../3.0.0/v1.0.0/components/Contour.json | 6 ++++-- .../v1.0.0/components/ContourConfiguration.json | 6 ++++-- .../3.0.0/v1.0.0/components/ContourDeployment.json | 6 ++++-- .../3.0.0/v1.0.0/components/ExtensionService.json | 6 ++++-- .../3.0.0/v1.0.0/components/Gateway.json | 6 ++++-- .../3.0.0/v1.0.0/components/GatewayClass.json | 6 ++++-- .../3.0.0/v1.0.0/components/HTTPProxy.json | 6 ++++-- .../3.0.0/v1.0.0/components/HTTPRoute.json | 6 ++++-- .../3.0.0/v1.0.0/components/TCPRoute.json | 6 ++++-- .../v1.0.0/components/TLSCertificateDelegation.json | 6 ++++-- .../3.0.0/v1.0.0/components/TLSRoute.json | 6 ++++-- .../3.0.0/v1.0.0/components/UDPRoute.json | 6 ++++-- .../v1.0.0/components/AdvancedCronJob.json | 6 ++++-- .../22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json | 6 ++++-- .../v1.0.0/components/Alertmanager.json | 2 ++ .../v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../v1.0.0/components/AnalyticDeployment.json | 6 ++++-- .../v1.0.0/components/AuthService.json | 6 ++++-- .../v1.0.0/components/BroadcastJob.json | 6 ++++-- .../v1.0.0/components/CloneSet.json | 6 ++++-- .../v1.0.0/components/ConsulResolver.json | 6 ++++-- .../v1.0.0/components/ContainerRecreateRequest.json | 6 ++++-- .../v1.0.0/components/DaemonSet.json | 6 ++++-- .../v1.0.0/components/DevPortal.json | 6 ++++-- .../v1.0.0/components/HelmRelease.json | 6 ++++-- .../22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json | 6 ++++-- .../v1.0.0/components/ImagePullJob.json | 6 ++++-- .../components/KubernetesEndpointResolver.json | 6 ++++-- .../v1.0.0/components/KubernetesServiceResolver.json | 6 ++++-- .../v1.0.0/components/Listener.json | 6 ++++-- .../v1.0.0/components/LogService.json | 6 ++++-- .../v1.0.0/components/Mapping.json | 6 ++++-- .../v1.0.0/components/MetricGroup.json | 6 ++++-- .../v1.0.0/components/Module.json | 6 ++++-- .../v1.0.0/components/NodeImage.json | 6 ++++-- .../v1.0.0/components/PodMonitor.json | 2 ++ .../v1.0.0/components/PodUnavailableBudget.json | 6 ++++-- .../22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json | 2 ++ .../v1.0.0/components/Prometheus.json | 2 ++ .../v1.0.0/components/PrometheusK8sCluster.json | 6 ++++-- .../v1.0.0/components/PrometheusRule.json | 2 ++ .../v1.0.0/components/RateLimitService.json | 6 ++++-- .../v1.0.0/components/ResourceDistribution.json | 6 ++++-- .../v1.0.0/components/ServiceMonitor.json | 2 ++ .../v1.0.0/components/SidecarSet.json | 6 ++++-- .../v1.0.0/components/StatefulSet.json | 6 ++++-- .../v1.0.0/components/TCPMapping.json | 6 ++++-- .../v1.0.0/components/TLSContext.json | 6 ++++-- .../v1.0.0/components/ThanosRuler.json | 2 ++ .../v1.0.0/components/TracingService.json | 6 ++++-- .../v1.0.0/components/UnitedDeployment.json | 6 ++++-- .../v1.0.0/components/WorkloadSpread.json | 6 ++++-- .../0.9.0/v1.0.0/components/ClusterInstance.json | 6 ++++-- .../0.9.0/v1.0.0/components/ClusterTemplate.json | 6 ++++-- .../0.9.0/v1.0.0/components/Instance.json | 6 ++++-- .../0.9.0/v1.0.0/components/Template.json | 6 ++++-- .../0.9.0/v1.0.0/components/User.json | 6 ++++-- .../0.9.0/v1.0.0/components/Workspace.json | 6 ++++-- .../2.1.2/v1.0.0/components/Alertmanager.json | 2 ++ .../2.1.2/v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../2.1.2/v1.0.0/components/PodMonitor.json | 2 ++ .../2.1.2/v1.0.0/components/Probe.json | 2 ++ .../2.1.2/v1.0.0/components/Prometheus.json | 2 ++ .../2.1.2/v1.0.0/components/PrometheusRule.json | 2 ++ .../2.1.2/v1.0.0/components/ServiceMonitor.json | 2 ++ .../2.1.2/v1.0.0/components/ThanosRuler.json | 2 ++ .../v1.0.0/components/CouchbaseAutoscaler.json | 2 ++ .../2.64.0/v1.0.0/components/CouchbaseBackup.json | 2 ++ .../v1.0.0/components/CouchbaseBackupRestore.json | 2 ++ .../2.64.0/v1.0.0/components/CouchbaseBucket.json | 2 ++ .../2.64.0/v1.0.0/components/CouchbaseCluster.json | 2 ++ .../v1.0.0/components/CouchbaseCollection.json | 2 ++ .../v1.0.0/components/CouchbaseCollectionGroup.json | 2 ++ .../v1.0.0/components/CouchbaseEphemeralBucket.json | 2 ++ .../2.64.0/v1.0.0/components/CouchbaseGroup.json | 2 ++ .../v1.0.0/components/CouchbaseMemcachedBucket.json | 2 ++ .../components/CouchbaseMigrationReplication.json | 2 ++ .../v1.0.0/components/CouchbaseReplication.json | 2 ++ .../v1.0.0/components/CouchbaseRoleBinding.json | 2 ++ .../2.64.0/v1.0.0/components/CouchbaseScope.json | 2 ++ .../v1.0.0/components/CouchbaseScopeGroup.json | 2 ++ .../2.64.0/v1.0.0/components/CouchbaseUser.json | 2 ++ .../v0.3.0/v1.0.0/components/AddressscopeV2.json | 4 +++- .../v0.3.0/v1.0.0/components/AggregateV2.json | 4 +++- .../v1.0.0/components/ApplicationCredentialV3.json | 4 +++- .../v0.3.0/v1.0.0/components/ClusterV1.json | 4 +++- .../v0.3.0/v1.0.0/components/ClustertemplateV1.json | 4 +++- .../v0.3.0/v1.0.0/components/ConfigurationV1.json | 4 +++- .../v0.3.0/v1.0.0/components/ContainerV1.json | 4 +++- .../v0.3.0/v1.0.0/components/DatabaseV1.json | 4 +++- .../v0.3.0/v1.0.0/components/EC2CredentialV3.json | 4 +++- .../v0.3.0/v1.0.0/components/EndpointGroupV2.json | 4 +++- .../v0.3.0/v1.0.0/components/EndpointV3.json | 4 +++- .../v0.3.0/v1.0.0/components/FlavorAccessV2.json | 4 +++- .../v0.3.0/v1.0.0/components/FlavorV2.json | 4 +++- .../v1.0.0/components/FloatingipAssociateV2.json | 4 +++- .../v0.3.0/v1.0.0/components/FloatingipV2.json | 4 +++- .../v0.3.0/v1.0.0/components/GroupV2.json | 4 +++- .../v0.3.0/v1.0.0/components/GroupV3.json | 4 +++- .../v0.3.0/v1.0.0/components/IkePolicyV2.json | 4 +++- .../v1.0.0/components/ImageAccessAcceptV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ImageAccessV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ImageV2.json | 4 +++- .../v1.0.0/components/InheritRoleAssignmentV3.json | 4 +++- .../v0.3.0/v1.0.0/components/InstanceV1.json | 4 +++- .../v0.3.0/v1.0.0/components/InstanceV2.json | 4 +++- .../v0.3.0/v1.0.0/components/InterfaceAttachV2.json | 4 +++- .../v0.3.0/v1.0.0/components/IpsecPolicyV2.json | 4 +++- .../v0.3.0/v1.0.0/components/KeypairV2.json | 4 +++- .../v0.3.0/v1.0.0/components/L7PolicyV2.json | 4 +++- .../v0.3.0/v1.0.0/components/L7RuleV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ListenerV2.json | 4 +++- .../v0.3.0/v1.0.0/components/LoadbalancerV2.json | 4 +++- .../v0.3.0/v1.0.0/components/MemberV2.json | 4 +++- .../v0.3.0/v1.0.0/components/MembersV2.json | 4 +++- .../v0.3.0/v1.0.0/components/MonitorV2.json | 4 +++- .../v0.3.0/v1.0.0/components/NetworkV2.json | 4 +++- .../v0.3.0/v1.0.0/components/NodegroupV1.json | 4 +++- .../v0.3.0/v1.0.0/components/ObjectV1.json | 4 +++- .../v0.3.0/v1.0.0/components/OrderV1.json | 4 +++- .../v0.3.0/v1.0.0/components/PolicyV2.json | 4 +++- .../v0.3.0/v1.0.0/components/PoolV2.json | 4 +++- .../v1.0.0/components/PortSecgroupAssociateV2.json | 4 +++- .../v0.3.0/v1.0.0/components/PortV2.json | 4 +++- .../v0.3.0/v1.0.0/components/PortforwardingV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ProjectV3.json | 4 +++- .../v0.3.0/v1.0.0/components/ProviderConfig.json | 4 +++- .../v1.0.0/components/ProviderConfigUsage.json | 4 +++- .../v0.3.0/v1.0.0/components/QosAssociationV3.json | 4 +++- .../v1.0.0/components/QosBandwidthLimitRuleV2.json | 4 +++- .../v1.0.0/components/QosDscpMarkingRuleV2.json | 4 +++- .../v1.0.0/components/QosMinimumBandwidthRuleV2.json | 4 +++- .../v0.3.0/v1.0.0/components/QosPolicyV2.json | 4 +++- .../v0.3.0/v1.0.0/components/QosV3.json | 4 +++- .../v0.3.0/v1.0.0/components/QuotaV2.json | 4 +++- .../v0.3.0/v1.0.0/components/QuotasetV2.json | 4 +++- .../v0.3.0/v1.0.0/components/QuotasetV3.json | 4 +++- .../v0.3.0/v1.0.0/components/RbacPolicyV2.json | 4 +++- .../v0.3.0/v1.0.0/components/RecordsetV2.json | 4 +++- .../v0.3.0/v1.0.0/components/RoleAssignmentV3.json | 4 +++- .../v0.3.0/v1.0.0/components/RoleV3.json | 4 +++- .../v0.3.0/v1.0.0/components/RouterInterfaceV2.json | 4 +++- .../v0.3.0/v1.0.0/components/RouterRouteV2.json | 4 +++- .../v0.3.0/v1.0.0/components/RouterV2.json | 4 +++- .../v0.3.0/v1.0.0/components/RuleV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SecgroupRuleV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SecgroupV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SecretV1.json | 4 +++- .../v0.3.0/v1.0.0/components/SecurityserviceV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ServergroupV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ServiceV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ServiceV3.json | 4 +++- .../v0.3.0/v1.0.0/components/ShareAccessV2.json | 4 +++- .../v0.3.0/v1.0.0/components/ShareV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SharenetworkV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SiteConnectionV2.json | 4 +++- .../v0.3.0/v1.0.0/components/StackV1.json | 4 +++- .../v0.3.0/v1.0.0/components/StoreConfig.json | 4 +++- .../v0.3.0/v1.0.0/components/SubnetRouteV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SubnetV2.json | 4 +++- .../v0.3.0/v1.0.0/components/SubnetpoolV2.json | 4 +++- .../v0.3.0/v1.0.0/components/TempurlV1.json | 4 +++- .../v0.3.0/v1.0.0/components/TransferAcceptV2.json | 4 +++- .../v0.3.0/v1.0.0/components/TransferRequestV2.json | 4 +++- .../v0.3.0/v1.0.0/components/TrunkV2.json | 4 +++- .../v0.3.0/v1.0.0/components/UserMembershipV3.json | 4 +++- .../v0.3.0/v1.0.0/components/UserV1.json | 4 +++- .../v0.3.0/v1.0.0/components/UserV3.json | 4 +++- .../v0.3.0/v1.0.0/components/VolumeAttachV2.json | 4 +++- .../v0.3.0/v1.0.0/components/VolumeAttachV3.json | 4 +++- .../v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json | 4 +++- .../v0.3.0/v1.0.0/components/VolumeTypeV3.json | 4 +++- .../v0.3.0/v1.0.0/components/VolumeV3.json | 4 +++- .../v0.3.0/v1.0.0/components/ZoneV2.json | 4 +++- .../components/CompositeResourceDefinition.json | 4 +++- .../v1.0.0/components/Composition.json | 4 +++- .../v1.0.0/components/Configuration.json | 4 +++- .../v1.0.0/components/ConfigurationRevision.json | 4 +++- .../v1.0.0/components/KubernetesApplication.json | 4 +++- .../components/KubernetesApplicationResource.json | 4 +++- .../v1.0.0/components/KubernetesTarget.json | 4 +++- .../v1.0.0/components/Provider.json | 4 +++- .../v1.0.0/components/ProviderRevision.json | 4 +++- .../1.5.4/v1.0.0/components/SecretProviderClass.json | 6 ++++-- .../components/SecretProviderClassPodStatus.json | 6 ++++-- .../dapr/1.13.4/v1.0.0/components/Component.json | 4 +++- .../dapr/1.13.4/v1.0.0/components/Configuration.json | 4 +++- .../dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json | 4 +++- .../dapr/1.13.4/v1.0.0/components/Resiliency.json | 4 +++- .../dapr/1.13.4/v1.0.0/components/Subscription.json | 4 +++- .../2024.1.0/v1.0.0/components/DaskCluster.json | 2 ++ .../2024.1.0/v1.0.0/components/IngressRoute.json | 2 ++ .../2024.1.0/v1.0.0/components/IngressRouteTCP.json | 2 ++ .../2024.1.0/v1.0.0/components/IngressRouteUDP.json | 2 ++ .../2024.1.0/v1.0.0/components/Middleware.json | 2 ++ .../2024.1.0/v1.0.0/components/MiddlewareTCP.json | 2 ++ .../2024.1.0/v1.0.0/components/ServersTransport.json | 2 ++ .../2024.1.0/v1.0.0/components/TLSOption.json | 2 ++ .../2024.1.0/v1.0.0/components/TLSStore.json | 2 ++ .../2024.1.0/v1.0.0/components/TraefikService.json | 2 ++ .../2024.5.0/v1.0.0/components/DaskAutoscaler.json | 2 ++ .../2024.5.0/v1.0.0/components/DaskCluster.json | 2 ++ .../2024.5.0/v1.0.0/components/DaskJob.json | 2 ++ .../2024.5.0/v1.0.0/components/DaskWorkerGroup.json | 2 ++ .../2024.1.1/v1.0.0/components/DaskCluster.json | 6 ++++-- .../2024.1.1/v1.0.0/components/IngressRoute.json | 2 ++ .../2024.1.1/v1.0.0/components/IngressRouteTCP.json | 2 ++ .../2024.1.1/v1.0.0/components/IngressRouteUDP.json | 2 ++ .../2024.1.1/v1.0.0/components/Middleware.json | 2 ++ .../2024.1.1/v1.0.0/components/MiddlewareTCP.json | 2 ++ .../2024.1.1/v1.0.0/components/ServersTransport.json | 2 ++ .../2024.1.1/v1.0.0/components/TLSOption.json | 2 ++ .../daskhub/2024.1.1/v1.0.0/components/TLSStore.json | 2 ++ .../2024.1.1/v1.0.0/components/TraefikService.json | 2 ++ .../dast-operator/0.3.2/v1.0.0/components/Dast.json | 6 ++++-- .../0.0.1/v1.0.0/components/Alertmanager.json | 8 +++++--- .../0.0.1/v1.0.0/components/PodMonitor.json | 8 +++++--- .../0.0.1/v1.0.0/components/Prometheus.json | 8 +++++--- .../0.0.1/v1.0.0/components/PrometheusRule.json | 8 +++++--- .../0.0.1/v1.0.0/components/ServiceMonitor.json | 8 +++++--- .../0.0.1/v1.0.0/components/ThanosRuler.json | 8 +++++--- .../0.0.3/v1.0.0/components/Alertmanager.json | 8 +++++--- .../0.0.3/v1.0.0/components/PodMonitor.json | 8 +++++--- .../0.0.3/v1.0.0/components/Prometheus.json | 8 +++++--- .../0.0.3/v1.0.0/components/PrometheusRule.json | 8 +++++--- .../0.0.3/v1.0.0/components/ServiceMonitor.json | 8 +++++--- .../0.0.3/v1.0.0/components/ThanosRuler.json | 8 +++++--- .../v1.0.0/components/ClusterServingRuntime.json | 8 +++++--- .../v1.0.0/components/ClusterStorageContainer.json | 2 ++ .../1.38.0/v1.0.0/components/InferenceGraph.json | 6 ++++-- .../1.38.0/v1.0.0/components/InferenceService.json | 8 +++++--- .../1.38.0/v1.0.0/components/ServingRuntime.json | 8 +++++--- .../1.38.0/v1.0.0/components/TrainedModel.json | 8 +++++--- .../0.3.3/v1.0.0/components/Certificate.json | 6 ++++-- .../0.3.3/v1.0.0/components/CertificateRequest.json | 6 ++++-- .../0.3.3/v1.0.0/components/Challenge.json | 6 ++++-- .../0.3.3/v1.0.0/components/ClusterIssuer.json | 6 ++++-- .../0.3.3/v1.0.0/components/Issuer.json | 6 ++++-- .../0.3.3/v1.0.0/components/Order.json | 6 ++++-- .../0.22.71/v1.0.0/components/Installer.json | 6 ++++-- .../0.3.0/v1.0.0/components/Ditto.json | 6 ++++-- .../3.5.0/v1.0.0/components/Alertmanager.json | 2 ++ .../3.5.0/v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../3.5.0/v1.0.0/components/GrafanaAgent.json | 2 ++ .../3.5.0/v1.0.0/components/Integration.json | 2 ++ .../3.5.0/v1.0.0/components/LogsInstance.json | 2 ++ .../3.5.0/v1.0.0/components/MetricsInstance.json | 2 ++ .../3.5.0/v1.0.0/components/PodLogs.json | 2 ++ .../3.5.0/v1.0.0/components/PodMonitor.json | 2 ++ .../3.5.0/v1.0.0/components/Probe.json | 2 ++ .../3.5.0/v1.0.0/components/Prometheus.json | 2 ++ .../3.5.0/v1.0.0/components/PrometheusAgent.json | 2 ++ .../3.5.0/v1.0.0/components/PrometheusRule.json | 2 ++ .../3.5.0/v1.0.0/components/ScrapeConfig.json | 2 ++ .../3.5.0/v1.0.0/components/ServiceMonitor.json | 2 ++ .../3.5.0/v1.0.0/components/ThanosRuler.json | 2 ++ .../echoperator/0.0.2/v1.0.0/components/Echo.json | 2 ++ .../0.0.2/v1.0.0/components/ScheduledEcho.json | 2 ++ .../7.86.0/v1.0.0/components/CheCluster.json | 6 ++++-- .../v1.0.0/components/ArgoApplication.json | 6 ++++-- .../v1.0.0/components/EDPComponent.json | 6 ++++-- .../3.8.1/v1.0.0/components/CDPipeline.json | 2 ++ .../3.8.1/v1.0.0/components/CDStageDeploy.json | 2 ++ .../3.8.1/v1.0.0/components/Codebase.json | 2 ++ .../3.8.1/v1.0.0/components/CodebaseBranch.json | 2 ++ .../3.8.1/v1.0.0/components/CodebaseImageStream.json | 2 ++ .../3.8.1/v1.0.0/components/EDPComponent.json | 2 ++ .../edp-install/3.8.1/v1.0.0/components/Gerrit.json | 2 ++ .../3.8.1/v1.0.0/components/GerritGroup.json | 2 ++ .../3.8.1/v1.0.0/components/GerritGroupMember.json | 2 ++ .../3.8.1/v1.0.0/components/GerritMergeRequest.json | 2 ++ .../3.8.1/v1.0.0/components/GerritProject.json | 2 ++ .../3.8.1/v1.0.0/components/GerritProjectAccess.json | 2 ++ .../v1.0.0/components/GerritReplicationConfig.json | 2 ++ .../3.8.1/v1.0.0/components/GitServer.json | 2 ++ .../3.8.1/v1.0.0/components/JiraIssueMetadata.json | 2 ++ .../3.8.1/v1.0.0/components/JiraServer.json | 2 ++ .../3.8.1/v1.0.0/components/QuickLink.json | 10 ++++++---- .../edp-install/3.8.1/v1.0.0/components/Stage.json | 2 ++ .../3.8.1/v1.0.0/components/Template.json | 2 ++ .../egeria-base/4.3.0/v1.0.0/components/Kafka.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaBridge.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaConnect.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaConnector.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaMirrorMaker.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaMirrorMaker2.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaNodePool.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaRebalance.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaTopic.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaUser.json | 2 ++ .../4.3.0/v1.0.0/components/StrimziPodSet.json | 2 ++ .../egeria-cts/4.3.0/v1.0.0/components/Kafka.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaBridge.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaConnect.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaConnector.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaMirrorMaker.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaMirrorMaker2.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaNodePool.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaRebalance.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaTopic.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaUser.json | 2 ++ .../4.3.0/v1.0.0/components/StrimziPodSet.json | 2 ++ .../egeria-pts/4.3.0/v1.0.0/components/Kafka.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaBridge.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaConnect.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaConnector.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaMirrorMaker.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaMirrorMaker2.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaNodePool.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaRebalance.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaTopic.json | 2 ++ .../4.3.0/v1.0.0/components/KafkaUser.json | 2 ++ .../4.3.0/v1.0.0/components/StrimziPodSet.json | 2 ++ .../1.25.0/v1.0.0/components/MongoDB.json | 2 ++ .../1.25.0/v1.0.0/components/MongoDBMulti.json | 12 +++++++----- .../v1.0.0/components/MongoDBMultiCluster.json | 12 +++++++----- .../1.25.0/v1.0.0/components/MongoDBOpsManager.json | 12 +++++++----- .../1.25.0/v1.0.0/components/MongoDBUser.json | 12 +++++++----- .../epinio/1.11.1/v1.0.0/components/App.json | 12 +++++++----- .../epinio/1.11.1/v1.0.0/components/AppChart.json | 12 +++++++----- .../epinio/1.11.1/v1.0.0/components/Service.json | 12 +++++++----- .../0.1.6/v1.0.0/components/EtcdBackup.json | 4 +++- .../0.1.6/v1.0.0/components/EtcdBackupSchedule.json | 4 +++- .../0.1.6/v1.0.0/components/EtcdCluster.json | 4 +++- .../0.1.6/v1.0.0/components/EtcdPeer.json | 4 +++- .../0.1.6/v1.0.0/components/EtcdRestore.json | 4 +++- .../14.6.301/v1.0.0/components/AWSChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/AzureChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/DNSChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/GCPChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/HTTPChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/IOChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/JVMChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/KernelChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/NetworkChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PhysicalMachine.json | 6 ++++-- .../v1.0.0/components/PhysicalMachineChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PodChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PodHttpChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PodIOChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/PodNetworkChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/Schedule.json | 6 ++++-- .../14.6.301/v1.0.0/components/StatusCheck.json | 6 ++++-- .../14.6.301/v1.0.0/components/StressChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/TimeChaos.json | 6 ++++-- .../14.6.301/v1.0.0/components/Workflow.json | 6 ++++-- .../14.6.301/v1.0.0/components/WorkflowNode.json | 6 ++++-- .../fadi/0.3.1/v1.0.0/components/IngressRoute.json | 2 ++ .../0.3.1/v1.0.0/components/IngressRouteTCP.json | 2 ++ .../0.3.1/v1.0.0/components/IngressRouteUDP.json | 2 ++ .../fadi/0.3.1/v1.0.0/components/Middleware.json | 2 ++ .../fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json | 2 ++ .../0.3.1/v1.0.0/components/ServersTransport.json | 2 ++ .../fadi/0.3.1/v1.0.0/components/TLSOption.json | 2 ++ .../fadi/0.3.1/v1.0.0/components/TLSStore.json | 2 ++ .../fadi/0.3.1/v1.0.0/components/TraefikService.json | 2 ++ .../1.37.0/v1.0.0/components/AlertProvider.json | 2 ++ .../flagger/1.37.0/v1.0.0/components/Canary.json | 2 ++ .../1.37.0/v1.0.0/components/MetricTemplate.json | 2 ++ .../1.7.0/v1.0.0/components/ApiInstance.json | 2 ++ .../1.7.0/v1.0.0/components/Configuration.json | 2 ++ .../1.7.0/v1.0.0/components/Extension.json | 2 ++ .../1.7.0/v1.0.0/components/PolicyBinding.json | 2 ++ .../1.7.0/v1.0.0/components/Service.json | 2 ++ .../0.1.0/v1.0.0/components/ClusterFilter.json | 4 +++- .../v1.0.0/components/ClusterFluentBitConfig.json | 4 +++- .../v1.0.0/components/ClusterFluentdConfig.json | 4 +++- .../0.1.0/v1.0.0/components/ClusterInput.json | 4 +++- .../0.1.0/v1.0.0/components/ClusterOutput.json | 4 +++- .../0.1.0/v1.0.0/components/ClusterParser.json | 4 +++- .../0.1.0/v1.0.0/components/Filter.json | 4 +++- .../0.1.0/v1.0.0/components/FluentBit.json | 4 +++- .../0.1.0/v1.0.0/components/Fluentd.json | 4 +++- .../0.1.0/v1.0.0/components/FluentdConfig.json | 4 +++- .../0.1.0/v1.0.0/components/Output.json | 4 +++- .../0.5.1/v1.0.0/components/FluentdConfig.json | 4 +++- .../1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json | 6 ++++-- .../1.12.1-rc0/v1.0.0/components/DaskCluster.json | 6 ++++-- .../1.12.1-rc0/v1.0.0/components/DaskJob.json | 6 ++++-- .../v1.0.0/components/DaskWorkerGroup.json | 6 ++++-- .../v1.0.0/components/ScheduledSparkApplication.json | 2 ++ .../v1.0.0/components/SparkApplication.json | 2 ++ .../v1.0.0/components/ScheduledSparkApplication.json | 2 ++ .../v1.0.0/components/SparkApplication.json | 2 ++ .../1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json | 2 ++ .../1.12.1-rc0/v1.0.0/components/DaskCluster.json | 2 ++ .../flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json | 2 ++ .../v1.0.0/components/DaskWorkerGroup.json | 2 ++ .../v1.0.0/components/ScheduledSparkApplication.json | 2 ++ .../v1.0.0/components/SparkApplication.json | 2 ++ .../0.1.4/v1.0.0/components/Alertmanager.json | 2 ++ .../0.1.4/v1.0.0/components/AlertmanagerConfig.json | 2 ++ .../0.1.4/v1.0.0/components/Grafana.json | 2 ++ .../0.1.4/v1.0.0/components/GrafanaDashboard.json | 2 ++ .../0.1.4/v1.0.0/components/GrafanaDataSource.json | 2 ++ .../components/GrafanaNotificationChannel.json | 2 ++ .../0.1.4/v1.0.0/components/PodMonitor.json | 2 ++ .../0.1.4/v1.0.0/components/Probe.json | 2 ++ .../0.1.4/v1.0.0/components/Prometheus.json | 2 ++ .../0.1.4/v1.0.0/components/PrometheusRule.json | 2 ++ .../0.1.4/v1.0.0/components/ServiceMonitor.json | 2 ++ .../0.1.4/v1.0.0/components/ThanosRuler.json | 2 ++ .../1.0.139/v1.0.0/components/ForecastleApp.json | 2 ++ .../8.0.1/v1.0.0/components/IngressRoute.json | 2 ++ .../8.0.1/v1.0.0/components/IngressRouteTCP.json | 2 ++ .../8.0.1/v1.0.0/components/IngressRouteUDP.json | 2 ++ .../8.0.1/v1.0.0/components/Middleware.json | 2 ++ .../8.0.1/v1.0.0/components/MiddlewareTCP.json | 2 ++ .../8.0.1/v1.0.0/components/ServersTransport.json | 2 ++ .../8.0.1/v1.0.0/components/ServersTransportTCP.json | 10 ++++++---- .../8.0.1/v1.0.0/components/TLSOption.json | 2 ++ .../8.0.1/v1.0.0/components/TLSStore.json | 2 ++ .../8.0.1/v1.0.0/components/TraefikService.json | 2 ++ .../v1.0.0/components/GafaelfawrServiceToken.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Binding.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Exchange.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Federation.json | 2 ++ .../v1.0.0/components/OperatorConfiguration.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Permission.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Policy.json | 2 ++ .../5.14.0/v1.0.0/components/PostgresTeam.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Queue.json | 2 ++ .../5.14.0/v1.0.0/components/RabbitmqCluster.json | 2 ++ .../5.14.0/v1.0.0/components/SchemaReplication.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Shovel.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/SuperStream.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/User.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/Vhost.json | 2 ++ .../galaxy/5.14.0/v1.0.0/components/postgresql.json | 2 ++ .../0.33.105/v1.0.0/components/OAuth2Client.json | 2 ++ .../galoy/0.33.105/v1.0.0/components/Rule.json | 2 ++ .../3.17.0-beta.0/v1.0.0/components/Assign.json | 4 +++- .../3.17.0-beta.0/v1.0.0/components/AssignImage.json | 4 +++- .../v1.0.0/components/AssignMetadata.json | 4 +++- .../3.17.0-beta.0/v1.0.0/components/Config.json | 6 ++++-- .../v1.0.0/components/ConstraintPodStatus.json | 6 ++++-- .../v1.0.0/components/ConstraintTemplate.json | 4 +++- .../components/ConstraintTemplatePodStatus.json | 6 ++++-- .../v1.0.0/components/ExpansionTemplate.json | 4 +++- .../components/ExpansionTemplatePodStatus.json | 4 +++- .../3.17.0-beta.0/v1.0.0/components/ModifySet.json | 4 +++- .../v1.0.0/components/MutatorPodStatus.json | 4 +++- .../3.17.0-beta.0/v1.0.0/components/Provider.json | 4 +++- .../3.17.0-beta.0/v1.0.0/components/SyncSet.json | 6 ++++-- .../2.1.3/v1.0.0/components/SnapshotGroup.json | 4 +++- .../2.20.1/v1.0.0/components/Gerrit.json | 6 ++++-- .../2.20.1/v1.0.0/components/GerritGroup.json | 6 ++++-- .../2.20.1/v1.0.0/components/GerritGroupMember.json | 6 ++++-- .../2.20.1/v1.0.0/components/GerritMergeRequest.json | 6 ++++-- .../2.20.1/v1.0.0/components/GerritProject.json | 6 ++++-- .../v1.0.0/components/GerritProjectAccess.json | 6 ++++-- .../v1.0.0/components/GerritReplicationConfig.json | 6 ++++-- .../2.8.1/v1.0.0/components/GithubActionRunner.json | 4 +++- .../components/HorizontalRunnerAutoscaler.json | 4 +++- .../0.1.2/v1.0.0/components/Runner.json | 4 +++- .../0.1.2/v1.0.0/components/RunnerDeployment.json | 4 +++- .../0.1.2/v1.0.0/components/RunnerReplicaSet.json | 4 +++- .../0.1.2/v1.0.0/components/RunnerSet.json | 4 +++- .../1.6.0/v1.0.0/components/Runner.json | 6 ++++-- .../gitlab/8.0.1/v1.0.0/components/Backend.json | 6 ++++-- .../gitlab/8.0.1/v1.0.0/components/Defaults.json | 6 ++++-- .../gitlab/8.0.1/v1.0.0/components/Global.json | 6 ++++-- .../gitlab/8.0.1/v1.0.0/components/IngressRoute.json | 8 +++++--- .../8.0.1/v1.0.0/components/IngressRouteTCP.json | 8 +++++--- .../8.0.1/v1.0.0/components/IngressRouteUDP.json | 8 +++++--- .../gitlab/8.0.1/v1.0.0/components/Middleware.json | 8 +++++--- .../8.0.1/v1.0.0/components/MiddlewareTCP.json | 8 +++++--- .../8.0.1/v1.0.0/components/ServersTransport.json | 8 +++++--- .../gitlab/8.0.1/v1.0.0/components/TLSOption.json | 8 +++++--- .../gitlab/8.0.1/v1.0.0/components/TLSStore.json | 8 +++++--- .../8.0.1/v1.0.0/components/TraefikService.json | 8 +++++--- .../gko/0.13.1/v1.0.0/components/ApiDefinition.json | 2 ++ .../gko/0.13.1/v1.0.0/components/ApiResource.json | 2 ++ .../gko/0.13.1/v1.0.0/components/Application.json | 2 ++ .../0.13.1/v1.0.0/components/ManagementContext.json | 2 ++ .../v1.0.0/components/AccessLogRecord.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/AccessPolicy.json | 2 ++ .../v1.0.0/components/CertificateVerification.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/Dashboard.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/Destination.json | 2 ++ .../v1.0.0/components/IstioInstallation.json | 2 ++ .../v1.0.0/components/KubernetesCluster.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/Mesh.json | 2 ++ .../v1.0.0/components/RateLimitClientConfig.json | 2 ++ .../v1.0.0/components/RateLimitServerConfig.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/Role.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/RoleBinding.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/RouteTable.json | 2 ++ .../v1.0.0/components/ServiceDependency.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/Settings.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/TrafficPolicy.json | 2 ++ .../v1.0.0/components/VirtualDestination.json | 2 ++ .../v1.0.0/components/VirtualGateway.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/VirtualHost.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/VirtualMesh.json | 2 ++ .../v1.0.0/components/WasmDeployment.json | 2 ++ .../1.2.0-beta1/v1.0.0/components/Workload.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/AuthConfig.json | 2 ++ .../gloo/1.17.0-rc1/v1.0.0/components/Gateway.json | 2 ++ .../v1.0.0/components/GatewayParameters.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/GraphQLApi.json | 2 ++ .../v1.0.0/components/HttpListenerOption.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/ListenerOption.json | 2 ++ .../v1.0.0/components/MatchableHttpGateway.json | 2 ++ .../v1.0.0/components/MatchableTcpGateway.json | 6 ++++-- .../gloo/1.17.0-rc1/v1.0.0/components/Proxy.json | 2 ++ .../v1.0.0/components/RateLimitConfig.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/RouteOption.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/RouteTable.json | 2 ++ .../gloo/1.17.0-rc1/v1.0.0/components/Settings.json | 2 ++ .../gloo/1.17.0-rc1/v1.0.0/components/Upstream.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/UpstreamGroup.json | 2 ++ .../v1.0.0/components/VirtualHostOption.json | 2 ++ .../1.17.0-rc1/v1.0.0/components/VirtualService.json | 2 ++ .../v1.0.0/components/VerticalPodAutoscaler.json | 6 ++++-- .../components/VerticalPodAutoscalerCheckpoint.json | 6 ++++-- .../3.10.0/v1.0.0/components/KopfPeering.json | 2 ++ .../3.10.0/v1.0.0/components/Organization.json | 2 ++ .../gotway/0.8.0/v1.0.0/components/IngressHTTP.json | 2 ++ .../24.3.0/v1.0.0/components/ClusterPolicy.json | 2 ++ .../24.3.0/v1.0.0/components/NVIDIADriver.json | 2 ++ .../24.3.0/v1.0.0/components/NodeFeature.json | 2 ++ .../24.3.0/v1.0.0/components/NodeFeatureRule.json | 2 ++ .../4.4.5/v1.0.0/components/Grafana.json | 6 ++++-- .../v1.0.0/components/GrafanaAlertRuleGroup.json | 10 ++++++---- .../4.4.5/v1.0.0/components/GrafanaContactPoint.json | 10 ++++++---- .../4.4.5/v1.0.0/components/GrafanaDashboard.json | 6 ++++-- .../4.4.5/v1.0.0/components/GrafanaDatasource.json | 6 ++++-- .../4.4.5/v1.0.0/components/GrafanaFolder.json | 6 ++++-- .../v1.0.0/components/GrafanaDashboard.json | 6 ++++-- .../1.6.3/v1.0.0/components/Instance.json | 6 ++++-- .../v1.0.0/components/InstanceChartRepository.json | 6 ++++-- .../1.6.3/v1.0.0/components/Project.json | 6 ++++-- .../1.6.3/v1.0.0/components/Registry.json | 6 ++++-- .../1.6.3/v1.0.0/components/Replication.json | 6 ++++-- .../1.6.3/v1.0.0/components/User.json | 6 ++++-- .../0.1.4/v1.0.0/components/Hawkbit.json | 2 ++ .../1.1.199/v1.0.0/components/VaultBinding.json | 2 ++ .../v1.0.0/components/VaultCertificateAuthority.json | 2 ++ .../v1.0.0/components/VaultCertificateRole.json | 2 ++ .../1.1.199/v1.0.0/components/VaultClientConfig.json | 2 ++ .../1.1.199/v1.0.0/components/VaultKVSecret.json | 2 ++ .../v1.0.0/components/VaultKVSecretEngine.json | 2 ++ .../1.1.199/v1.0.0/components/VaultSyncSecret.json | 2 ++ .../v1.0.0/components/VaultTransitEngine.json | 2 ++ .../1.1.199/v1.0.0/components/VaultTransitKey.json | 2 ++ .../0.2.1/v1.0.0/components/HNCConfiguration.json | 2 ++ .../v1.0.0/components/HierarchyConfiguration.json | 2 ++ .../0.2.1/v1.0.0/components/SubnamespaceAnchor.json | 2 ++ .../0.11.38/v1.0.0/components/Alertmanager.json | 6 ++++-- .../v1.0.0/components/AlertmanagerConfig.json | 6 ++++-- .../0.11.38/v1.0.0/components/HiveMQCluster.json | 2 ++ .../0.11.38/v1.0.0/components/PodMonitor.json | 6 ++++-- .../0.11.38/v1.0.0/components/Probe.json | 6 ++++-- .../0.11.38/v1.0.0/components/Prometheus.json | 6 ++++-- .../0.11.38/v1.0.0/components/PrometheusRule.json | 6 ++++-- .../0.11.38/v1.0.0/components/ServiceMonitor.json | 6 ++++-- .../0.11.38/v1.0.0/components/ThanosRuler.json | 6 ++++-- .../0.2.35/v1.0.0/components/Alertmanager.json | 6 ++++-- .../0.2.35/v1.0.0/components/AlertmanagerConfig.json | 6 ++++-- .../0.2.35/v1.0.0/components/PodMonitor.json | 6 ++++-- .../hivemq-swarm/0.2.35/v1.0.0/components/Probe.json | 6 ++++-- .../0.2.35/v1.0.0/components/Prometheus.json | 6 ++++-- .../0.2.35/v1.0.0/components/PrometheusRule.json | 6 ++++-- .../0.2.35/v1.0.0/components/ServiceMonitor.json | 6 ++++-- .../0.2.35/v1.0.0/components/ThanosRuler.json | 6 ++++-- .../v1.118.1/v1.0.0/components/APIGatewayAPI.json | 6 ++++-- .../v1.0.0/components/APIGatewayAPIConfig.json | 6 ++++-- .../v1.0.0/components/APIGatewayGateway.json | 6 ++++-- .../v1.118.1/v1.0.0/components/APIKeysKey.json | 6 ++++-- .../components/AccessContextManagerAccessLevel.json | 6 ++++-- .../AccessContextManagerAccessLevelCondition.json | 6 ++++-- .../components/AccessContextManagerAccessPolicy.json | 6 ++++-- .../AccessContextManagerGCPUserAccessBinding.json | 6 ++++-- .../AccessContextManagerServicePerimeter.json | 6 ++++-- ...AccessContextManagerServicePerimeterResource.json | 6 ++++-- .../v1.118.1/v1.0.0/components/AlloyDBBackup.json | 6 ++++-- .../v1.118.1/v1.0.0/components/AlloyDBCluster.json | 6 ++++-- .../v1.118.1/v1.0.0/components/AlloyDBInstance.json | 6 ++++-- .../v1.118.1/v1.0.0/components/AlloyDBUser.json | 6 ++++-- .../v1.0.0/components/ApigeeAddonsConfig.json | 6 ++++-- .../v1.0.0/components/ApigeeEndpointAttachment.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ApigeeEnvgroup.json | 6 ++++-- .../v1.0.0/components/ApigeeEnvgroupAttachment.json | 6 ++++-- .../v1.0.0/components/ApigeeEnvironment.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ApigeeInstance.json | 6 ++++-- .../v1.0.0/components/ApigeeInstanceAttachment.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ApigeeNATAddress.json | 6 ++++-- .../v1.0.0/components/ApigeeOrganization.json | 6 ++++-- .../v1.0.0/components/ApigeeSyncAuthorization.json | 6 ++++-- .../v1.0.0/components/AppEngineDomainMapping.json | 6 ++++-- .../v1.0.0/components/AppEngineFirewallRule.json | 6 ++++-- .../components/AppEngineFlexibleAppVersion.json | 6 ++++-- .../components/AppEngineServiceSplitTraffic.json | 6 ++++-- .../components/AppEngineStandardAppVersion.json | 6 ++++-- .../components/ArtifactRegistryRepository.json | 6 ++++-- .../v1.0.0/components/BeyondCorpAppConnection.json | 6 ++++-- .../v1.0.0/components/BeyondCorpAppConnector.json | 6 ++++-- .../v1.0.0/components/BeyondCorpAppGateway.json | 6 ++++-- .../components/BigQueryAnalyticsHubDataExchange.json | 6 ++++-- .../components/BigQueryAnalyticsHubListing.json | 6 ++++-- .../components/BigQueryConnectionConnection.json | 6 ++++-- .../components/BigQueryDataPolicyDataPolicy.json | 6 ++++-- .../components/BigQueryDataTransferConfig.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigQueryDataset.json | 6 ++++-- .../v1.0.0/components/BigQueryDatasetAccess.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigQueryJob.json | 6 ++++-- .../BigQueryReservationCapacityCommitment.json | 6 ++++-- .../components/BigQueryReservationReservation.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigQueryRoutine.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigQueryTable.json | 6 ++++-- .../v1.0.0/components/BigtableAppProfile.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigtableGCPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigtableInstance.json | 6 ++++-- .../v1.118.1/v1.0.0/components/BigtableTable.json | 6 ++++-- .../v1.0.0/components/BillingBudgetsBudget.json | 6 ++++-- .../components/BinaryAuthorizationAttestor.json | 6 ++++-- .../v1.0.0/components/BinaryAuthorizationPolicy.json | 6 ++++-- .../components/CertificateManagerCertificate.json | 6 ++++-- .../components/CertificateManagerCertificateMap.json | 6 ++++-- .../CertificateManagerCertificateMapEntry.json | 6 ++++-- .../CertificateManagerDNSAuthorization.json | 6 ++++-- .../v1.0.0/components/CloudAssetFolderFeed.json | 6 ++++-- .../components/CloudAssetOrganizationFeed.json | 6 ++++-- .../v1.0.0/components/CloudAssetProjectFeed.json | 6 ++++-- .../v1.0.0/components/CloudBuildTrigger.json | 6 ++++-- .../v1.0.0/components/CloudFunctions2Function.json | 6 ++++-- .../v1.0.0/components/CloudFunctionsFunction.json | 6 ++++-- .../v1.118.1/v1.0.0/components/CloudIDSEndpoint.json | 6 ++++-- .../v1.118.1/v1.0.0/components/CloudIOTDevice.json | 6 ++++-- .../v1.0.0/components/CloudIOTDeviceRegistry.json | 6 ++++-- .../v1.0.0/components/CloudIdentityGroup.json | 6 ++++-- .../v1.0.0/components/CloudIdentityMembership.json | 6 ++++-- .../v1.0.0/components/CloudSchedulerJob.json | 6 ++++-- .../v1.118.1/v1.0.0/components/CloudTasksQueue.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeAddress.json | 6 ++++-- .../v1.0.0/components/ComputeAutoscaler.json | 6 ++++-- .../v1.0.0/components/ComputeBackendBucket.json | 6 ++++-- .../components/ComputeBackendBucketSignedURLKey.json | 6 ++++-- .../v1.0.0/components/ComputeBackendService.json | 6 ++++-- .../ComputeBackendServiceSignedURLKey.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeDisk.json | 6 ++++-- .../ComputeDiskResourcePolicyAttachment.json | 6 ++++-- .../v1.0.0/components/ComputeExternalVPNGateway.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeFirewall.json | 6 ++++-- .../v1.0.0/components/ComputeFirewallPolicy.json | 6 ++++-- .../components/ComputeFirewallPolicyAssociation.json | 6 ++++-- .../v1.0.0/components/ComputeFirewallPolicyRule.json | 6 ++++-- .../v1.0.0/components/ComputeForwardingRule.json | 6 ++++-- .../components/ComputeGlobalNetworkEndpoint.json | 6 ++++-- .../ComputeGlobalNetworkEndpointGroup.json | 6 ++++-- .../v1.0.0/components/ComputeHTTPHealthCheck.json | 6 ++++-- .../v1.0.0/components/ComputeHTTPSHealthCheck.json | 6 ++++-- .../v1.0.0/components/ComputeHealthCheck.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeImage.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeInstance.json | 6 ++++-- .../v1.0.0/components/ComputeInstanceGroup.json | 6 ++++-- .../components/ComputeInstanceGroupManager.json | 6 ++++-- .../components/ComputeInstanceGroupNamedPort.json | 6 ++++-- .../v1.0.0/components/ComputeInstanceTemplate.json | 6 ++++-- .../components/ComputeInterconnectAttachment.json | 6 ++++-- .../v1.0.0/components/ComputeMachineImage.json | 6 ++++-- .../components/ComputeManagedSSLCertificate.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeNetwork.json | 6 ++++-- .../v1.0.0/components/ComputeNetworkEndpoint.json | 6 ++++-- .../components/ComputeNetworkEndpointGroup.json | 6 ++++-- .../components/ComputeNetworkFirewallPolicy.json | 6 ++++-- .../ComputeNetworkFirewallPolicyAssociation.json | 6 ++++-- .../components/ComputeNetworkFirewallPolicyRule.json | 6 ++++-- .../v1.0.0/components/ComputeNetworkPeering.json | 6 ++++-- .../ComputeNetworkPeeringRoutesConfig.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeNodeGroup.json | 6 ++++-- .../v1.0.0/components/ComputeNodeTemplate.json | 6 ++++-- .../ComputeOrganizationSecurityPolicy.json | 6 ++++-- ...ComputeOrganizationSecurityPolicyAssociation.json | 6 ++++-- .../ComputeOrganizationSecurityPolicyRule.json | 6 ++++-- .../v1.0.0/components/ComputePacketMirroring.json | 6 ++++-- .../v1.0.0/components/ComputePerInstanceConfig.json | 6 ++++-- .../v1.0.0/components/ComputeProjectMetadata.json | 6 ++++-- .../v1.0.0/components/ComputeRegionAutoscaler.json | 6 ++++-- .../ComputeRegionDiskResourcePolicyAttachment.json | 6 ++++-- .../ComputeRegionNetworkEndpointGroup.json | 6 ++++-- .../components/ComputeRegionPerInstanceConfig.json | 6 ++++-- .../v1.0.0/components/ComputeRegionSSLPolicy.json | 6 ++++-- .../v1.0.0/components/ComputeReservation.json | 6 ++++-- .../v1.0.0/components/ComputeResourcePolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeRoute.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeRouter.json | 6 ++++-- .../v1.0.0/components/ComputeRouterInterface.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeRouterNAT.json | 6 ++++-- .../v1.0.0/components/ComputeRouterPeer.json | 6 ++++-- .../v1.0.0/components/ComputeSSLCertificate.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeSSLPolicy.json | 6 ++++-- .../v1.0.0/components/ComputeSecurityPolicy.json | 6 ++++-- .../v1.0.0/components/ComputeServiceAttachment.json | 6 ++++-- .../components/ComputeSharedVPCHostProject.json | 6 ++++-- .../components/ComputeSharedVPCServiceProject.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeSnapshot.json | 6 ++++-- .../v1.0.0/components/ComputeSubnetwork.json | 6 ++++-- .../v1.0.0/components/ComputeTargetGRPCProxy.json | 6 ++++-- .../v1.0.0/components/ComputeTargetHTTPProxy.json | 6 ++++-- .../v1.0.0/components/ComputeTargetHTTPSProxy.json | 6 ++++-- .../v1.0.0/components/ComputeTargetInstance.json | 6 ++++-- .../v1.0.0/components/ComputeTargetPool.json | 6 ++++-- .../v1.0.0/components/ComputeTargetSSLProxy.json | 6 ++++-- .../v1.0.0/components/ComputeTargetTCPProxy.json | 6 ++++-- .../v1.0.0/components/ComputeTargetVPNGateway.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeURLMap.json | 6 ++++-- .../v1.0.0/components/ComputeVPNGateway.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ComputeVPNTunnel.json | 6 ++++-- .../v1.0.0/components/ConfigControllerInstance.json | 6 ++++-- .../v1.0.0/components/ContainerAnalysisNote.json | 6 ++++-- .../components/ContainerAnalysisOccurrence.json | 6 ++++-- .../v1.0.0/components/ContainerAttachedCluster.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ContainerCluster.json | 6 ++++-- .../v1.0.0/components/ContainerNodePool.json | 6 ++++-- .../v1.0.0/components/DLPDeidentifyTemplate.json | 6 ++++-- .../v1.0.0/components/DLPInspectTemplate.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DLPJobTrigger.json | 6 ++++-- .../v1.0.0/components/DLPStoredInfoType.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DNSManagedZone.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DNSPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DNSRecordSet.json | 6 ++++-- .../v1.0.0/components/DNSResponsePolicy.json | 6 ++++-- .../v1.0.0/components/DNSResponsePolicyRule.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DataCatalogEntry.json | 6 ++++-- .../v1.0.0/components/DataCatalogEntryGroup.json | 6 ++++-- .../v1.0.0/components/DataCatalogPolicyTag.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DataCatalogTag.json | 6 ++++-- .../v1.0.0/components/DataCatalogTagTemplate.json | 6 ++++-- .../v1.0.0/components/DataCatalogTaxonomy.json | 6 ++++-- .../v1.0.0/components/DataFusionInstance.json | 6 ++++-- .../v1.0.0/components/DataflowFlexTemplateJob.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DataflowJob.json | 6 ++++-- .../v1.0.0/components/DataformRepository.json | 6 ++++-- .../v1.0.0/components/DataprocAutoscalingPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DataprocCluster.json | 6 ++++-- .../v1.0.0/components/DataprocWorkflowTemplate.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DatastoreIndex.json | 6 ++++-- .../components/DatastreamConnectionProfile.json | 6 ++++-- .../components/DatastreamPrivateConnection.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DatastreamStream.json | 6 ++++-- .../components/DeploymentManagerDeployment.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DialogflowAgent.json | 6 ++++-- .../v1.0.0/components/DialogflowCXAgent.json | 6 ++++-- .../v1.0.0/components/DialogflowCXEntityType.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DialogflowCXFlow.json | 6 ++++-- .../v1.0.0/components/DialogflowCXIntent.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DialogflowCXPage.json | 6 ++++-- .../v1.0.0/components/DialogflowCXWebhook.json | 6 ++++-- .../v1.0.0/components/DialogflowEntityType.json | 6 ++++-- .../v1.0.0/components/DialogflowFulfillment.json | 6 ++++-- .../v1.118.1/v1.0.0/components/DialogflowIntent.json | 6 ++++-- .../v1.0.0/components/DocumentAIProcessor.json | 6 ++++-- .../DocumentAIProcessorDefaultVersion.json | 6 ++++-- .../v1.0.0/components/EdgeContainerCluster.json | 6 ++++-- .../v1.0.0/components/EdgeContainerNodePool.json | 6 ++++-- .../components/EdgeContainerVpnConnection.json | 6 ++++-- .../v1.0.0/components/EdgeNetworkNetwork.json | 6 ++++-- .../v1.0.0/components/EdgeNetworkSubnet.json | 6 ++++-- .../v1.0.0/components/EssentialContactsContact.json | 6 ++++-- .../v1.118.1/v1.0.0/components/EventarcTrigger.json | 6 ++++-- .../v1.118.1/v1.0.0/components/FilestoreBackup.json | 6 ++++-- .../v1.0.0/components/FilestoreInstance.json | 6 ++++-- .../v1.0.0/components/FilestoreSnapshot.json | 6 ++++-- .../v1.0.0/components/FirebaseAndroidApp.json | 6 ++++-- .../v1.0.0/components/FirebaseDatabaseInstance.json | 6 ++++-- .../v1.0.0/components/FirebaseHostingChannel.json | 6 ++++-- .../v1.0.0/components/FirebaseHostingSite.json | 6 ++++-- .../v1.118.1/v1.0.0/components/FirebaseProject.json | 6 ++++-- .../v1.0.0/components/FirebaseStorageBucket.json | 6 ++++-- .../v1.118.1/v1.0.0/components/FirebaseWebApp.json | 6 ++++-- .../v1.118.1/v1.0.0/components/FirestoreIndex.json | 6 ++++-- .../v1.118.1/v1.0.0/components/Folder.json | 6 ++++-- .../v1.0.0/components/GKEBackupBackupPlan.json | 6 ++++-- .../v1.118.1/v1.0.0/components/GKEHubFeature.json | 6 ++++-- .../v1.0.0/components/GKEHubFeatureMembership.json | 6 ++++-- .../v1.118.1/v1.0.0/components/GKEHubMembership.json | 6 ++++-- .../v1.0.0/components/HealthcareConsentStore.json | 6 ++++-- .../v1.0.0/components/HealthcareDICOMStore.json | 6 ++++-- .../v1.0.0/components/HealthcareDataset.json | 6 ++++-- .../v1.0.0/components/HealthcareFHIRStore.json | 6 ++++-- .../v1.0.0/components/HealthcareHL7V2Store.json | 6 ++++-- .../v1.0.0/components/IAMAccessBoundaryPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAMAuditConfig.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAMCustomRole.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAMPartialPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAMPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAMPolicyMember.json | 6 ++++-- .../v1.0.0/components/IAMServiceAccount.json | 6 ++++-- .../v1.0.0/components/IAMServiceAccountKey.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAMWorkforcePool.json | 6 ++++-- .../v1.0.0/components/IAMWorkforcePoolProvider.json | 6 ++++-- .../v1.0.0/components/IAMWorkloadIdentityPool.json | 6 ++++-- .../components/IAMWorkloadIdentityPoolProvider.json | 6 ++++-- .../v1.118.1/v1.0.0/components/IAPBrand.json | 6 ++++-- .../components/IAPIdentityAwareProxyClient.json | 6 ++++-- .../v1.0.0/components/IdentityPlatformConfig.json | 6 ++++-- .../IdentityPlatformDefaultSupportedIDPConfig.json | 6 ++++-- .../IdentityPlatformInboundSAMLConfig.json | 6 ++++-- .../components/IdentityPlatformOAuthIDPConfig.json | 6 ++++-- .../IdentityPlatformProjectDefaultConfig.json | 6 ++++-- .../v1.0.0/components/IdentityPlatformTenant.json | 6 ++++-- ...ntityPlatformTenantDefaultSupportedIDPConfig.json | 6 ++++-- .../IdentityPlatformTenantInboundSAMLConfig.json | 6 ++++-- .../IdentityPlatformTenantOAuthIDPConfig.json | 6 ++++-- .../v1.118.1/v1.0.0/components/KMSCryptoKey.json | 6 ++++-- .../v1.0.0/components/KMSCryptoKeyVersion.json | 6 ++++-- .../v1.118.1/v1.0.0/components/KMSKeyRing.json | 6 ++++-- .../v1.0.0/components/KMSKeyRingImportJob.json | 6 ++++-- .../v1.0.0/components/KMSSecretCiphertext.json | 6 ++++-- .../v1.118.1/v1.0.0/components/LoggingLogBucket.json | 6 ++++-- .../v1.0.0/components/LoggingLogExclusion.json | 6 ++++-- .../v1.118.1/v1.0.0/components/LoggingLogMetric.json | 6 ++++-- .../v1.118.1/v1.0.0/components/LoggingLogSink.json | 6 ++++-- .../v1.118.1/v1.0.0/components/LoggingLogView.json | 6 ++++-- .../v1.118.1/v1.0.0/components/MLEngineModel.json | 6 ++++-- .../v1.118.1/v1.0.0/components/MemcacheInstance.json | 6 ++++-- .../v1.0.0/components/MonitoringAlertPolicy.json | 6 ++++-- .../v1.0.0/components/MonitoringDashboard.json | 6 ++++-- .../v1.118.1/v1.0.0/components/MonitoringGroup.json | 6 ++++-- .../components/MonitoringMetricDescriptor.json | 6 ++++-- .../components/MonitoringMonitoredProject.json | 6 ++++-- .../components/MonitoringNotificationChannel.json | 6 ++++-- .../v1.0.0/components/MonitoringService.json | 6 ++++-- .../components/MonitoringServiceLevelObjective.json | 6 ++++-- .../components/MonitoringUptimeCheckConfig.json | 6 ++++-- .../v1.0.0/components/NetworkConnectivityHub.json | 6 ++++-- .../v1.0.0/components/NetworkConnectivitySpoke.json | 6 ++++-- .../NetworkManagementConnectivityTest.json | 6 ++++-- .../NetworkSecurityAuthorizationPolicy.json | 6 ++++-- .../components/NetworkSecurityClientTLSPolicy.json | 6 ++++-- .../components/NetworkSecurityServerTLSPolicy.json | 6 ++++-- .../components/NetworkServicesEdgeCacheKeyset.json | 6 ++++-- .../components/NetworkServicesEdgeCacheOrigin.json | 6 ++++-- .../components/NetworkServicesEdgeCacheService.json | 6 ++++-- .../components/NetworkServicesEndpointPolicy.json | 6 ++++-- .../v1.0.0/components/NetworkServicesGRPCRoute.json | 6 ++++-- .../v1.0.0/components/NetworkServicesGateway.json | 6 ++++-- .../v1.0.0/components/NetworkServicesHTTPRoute.json | 6 ++++-- .../v1.0.0/components/NetworkServicesMesh.json | 6 ++++-- .../v1.0.0/components/NetworkServicesTCPRoute.json | 6 ++++-- .../v1.0.0/components/NetworkServicesTLSRoute.json | 6 ++++-- .../v1.0.0/components/NotebooksEnvironment.json | 6 ++++-- .../v1.0.0/components/OSConfigGuestPolicy.json | 6 ++++-- .../components/OSConfigOSPolicyAssignment.json | 6 ++++-- .../v1.0.0/components/OSConfigPatchDeployment.json | 6 ++++-- .../v1.0.0/components/OSLoginSSHPublicKey.json | 6 ++++-- .../v1.0.0/components/OrgPolicyCustomConstraint.json | 6 ++++-- .../v1.118.1/v1.0.0/components/PrivateCACAPool.json | 6 ++++-- .../v1.0.0/components/PrivateCACertificate.json | 6 ++++-- .../components/PrivateCACertificateAuthority.json | 6 ++++-- .../components/PrivateCACertificateTemplate.json | 6 ++++-- .../v1.118.1/v1.0.0/components/Project.json | 6 ++++-- .../v1.0.0/components/PubSubLiteReservation.json | 6 ++++-- .../v1.0.0/components/PubSubLiteSubscription.json | 6 ++++-- .../v1.118.1/v1.0.0/components/PubSubLiteTopic.json | 6 ++++-- .../v1.118.1/v1.0.0/components/PubSubSchema.json | 6 ++++-- .../v1.0.0/components/PubSubSubscription.json | 6 ++++-- .../v1.118.1/v1.0.0/components/PubSubTopic.json | 6 ++++-- .../v1.0.0/components/RecaptchaEnterpriseKey.json | 6 ++++-- .../v1.118.1/v1.0.0/components/RedisInstance.json | 6 ++++-- .../v1.0.0/components/ResourceManagerLien.json | 6 ++++-- .../v1.0.0/components/ResourceManagerPolicy.json | 6 ++++-- .../v1.118.1/v1.0.0/components/RunJob.json | 6 ++++-- .../v1.118.1/v1.0.0/components/RunService.json | 6 ++++-- .../v1.118.1/v1.0.0/components/SQLDatabase.json | 6 ++++-- .../v1.118.1/v1.0.0/components/SQLInstance.json | 6 ++++-- .../v1.118.1/v1.0.0/components/SQLSSLCert.json | 6 ++++-- .../v1.118.1/v1.0.0/components/SQLUser.json | 6 ++++-- .../v1.0.0/components/SecretManagerSecret.json | 6 ++++-- .../components/SecretManagerSecretVersion.json | 6 ++++-- .../components/SecurityCenterNotificationConfig.json | 6 ++++-- .../v1.0.0/components/SecurityCenterSource.json | 6 ++++-- .../v1.118.1/v1.0.0/components/Service.json | 6 ++++-- .../v1.0.0/components/ServiceDirectoryEndpoint.json | 6 ++++-- .../v1.0.0/components/ServiceDirectoryNamespace.json | 6 ++++-- .../v1.0.0/components/ServiceDirectoryService.json | 6 ++++-- .../v1.118.1/v1.0.0/components/ServiceIdentity.json | 6 ++++-- .../components/ServiceNetworkingConnection.json | 6 ++++-- .../ServiceUsageConsumerQuotaOverride.json | 6 ++++-- .../v1.0.0/components/SourceRepoRepository.json | 6 ++++-- .../v1.118.1/v1.0.0/components/SpannerDatabase.json | 6 ++++-- .../v1.118.1/v1.0.0/components/SpannerInstance.json | 6 ++++-- .../v1.118.1/v1.0.0/components/StorageBucket.json | 6 ++++-- .../components/StorageBucketAccessControl.json | 6 ++++-- .../StorageDefaultObjectAccessControl.json | 6 ++++-- .../v1.118.1/v1.0.0/components/StorageHMACKey.json | 6 ++++-- .../v1.0.0/components/StorageNotification.json | 6 ++++-- .../v1.0.0/components/StorageTransferAgentPool.json | 6 ++++-- .../v1.0.0/components/StorageTransferJob.json | 6 ++++-- .../v1.118.1/v1.0.0/components/TPUNode.json | 6 ++++-- .../v1.0.0/components/TagsLocationTagBinding.json | 6 ++++-- .../v1.118.1/v1.0.0/components/TagsTagBinding.json | 6 ++++-- .../v1.118.1/v1.0.0/components/TagsTagKey.json | 6 ++++-- .../v1.118.1/v1.0.0/components/TagsTagValue.json | 6 ++++-- .../v1.0.0/components/VPCAccessConnector.json | 6 ++++-- .../v1.118.1/v1.0.0/components/VertexAIDataset.json | 6 ++++-- .../v1.118.1/v1.0.0/components/VertexAIEndpoint.json | 6 ++++-- .../v1.0.0/components/VertexAIFeaturestore.json | 6 ++++-- .../components/VertexAIFeaturestoreEntityType.json | 6 ++++-- .../VertexAIFeaturestoreEntityTypeFeature.json | 6 ++++-- .../v1.118.1/v1.0.0/components/VertexAIIndex.json | 6 ++++-- .../v1.0.0/components/VertexAIIndexEndpoint.json | 6 ++++-- .../v1.0.0/components/VertexAIMetadataStore.json | 6 ++++-- .../v1.0.0/components/VertexAITensorboard.json | 6 ++++-- .../v1.0.0/components/WorkflowsWorkflow.json | 6 ++++-- .../components/WorkstationsWorkstationCluster.json | 6 ++++-- .../v2.14.0/v1.0.0/components/CloudEventSource.json | 4 +++- .../components/ClusterTriggerAuthentication.json | 4 +++- .../keda/v2.14.0/v1.0.0/components/ScaledJob.json | 4 +++- .../keda/v2.14.0/v1.0.0/components/ScaledObject.json | 4 +++- .../v1.0.0/components/TriggerAuthentication.json | 4 +++- .../v1.3.8/v1.0.0/components/KubeArmorConfig.json | 6 ++++-- .../v1.0.0/components/KubeArmorHostPolicy.json | 6 ++++-- .../v1.3.8/v1.0.0/components/KubeArmorPolicy.json | 6 ++++-- .../v1.0.0/components/NodeGroupInventoryWallet.json | 6 +++--- 1427 files changed, 4722 insertions(+), 1870 deletions(-) diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json index 70d33882f7d..5c609ff9473 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureAssignedIdentity.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json index e0e10dec4aa..f93dfcd1de5 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentity.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json index 5649e4900ba..cb3ee7f6ce0 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzureIdentityBinding.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json index ac64c56b294..cd7f67421d5 100644 --- a/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json +++ b/server/meshmodel/aad-pod-identity/4.1.18/v1.0.0/components/AzurePodIdentityException.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json index ae48dd56499..694c8fe2811 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/ExternalDNS.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalDNS", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json index 9ead94ba638..fb66638b161 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Plan.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Plan", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json index 76f41df238a..75723875190 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Product.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Product", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json index aba00bfa26a..6233b22a27d 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/Trickster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Trickster", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json index ff30227f803..28d14d93013 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterBackend.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TricksterBackend", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json index 864ad37f4fd..b660344c065 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterCache.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TricksterCache", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json index e28d37dea81..854ee307379 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRequestRewriter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TricksterRequestRewriter", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json index f0e887c672d..87500e2badb 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TricksterRule", diff --git a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json index eff8ff95152..143e2feee69 100644 --- a/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json +++ b/server/meshmodel/ace/2024.6.3/v1.0.0/components/TricksterTracingConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TricksterTracingConfig", diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json index b577fe34b4e..a48464b6f55 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#333333", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json index 4edaab4c400..e5ec932768d 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/Runner.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#333333", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json index cf25c60b52a..82df8729209 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerDeployment.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#333333", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json index 6a3c88ba3b5..bedddc45b92 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerReplicaSet.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#333333", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json index d298254c849..320134f9c63 100644 --- a/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json +++ b/server/meshmodel/actions-runner-controller/0.1.2/v1.0.0/components/RunnerSet.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#333333", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json b/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json index 54f2d6acf03..58d0a443fba 100644 --- a/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json +++ b/server/meshmodel/admin-console-operator/2.15.0-SNAPSHOT.3/v1.0.0/components/AdminConsole.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\" width='590.1' height='207.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AdminConsole", diff --git a/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json b/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json index e6ef8fbd632..fc95f1201d5 100644 --- a/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json +++ b/server/meshmodel/aerospike-kubernetes-operator/3.3.0/v1.0.0/components/AerospikeCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AerospikeCluster", diff --git a/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json b/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json index 4588e9eb17e..ca7c62c6e43 100644 --- a/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json +++ b/server/meshmodel/ai-scale-doer/0.1.0/v1.0.0/components/AIPodAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AIPodAutoscaler", diff --git a/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json b/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json index b5924ff18f7..750e2364c32 100644 --- a/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json +++ b/server/meshmodel/akri/0.12.55/v1.0.0/components/Configuration.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#0aaba9", - "secondaryColor": "#4FF0EE", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e \u003cdefs\u003e \u003cpath id=\"a\" d=\"M744.151 1273.145.22 843.325V.884L744.15 435.97z\" /\u003e \u003cpath id=\"c\" d=\"m742.709.099 742.867 435.22L742.71 870.537.63 435.75z\" /\u003e \u003c/defs\u003e \u003cg fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg transform=\"rotate(180 546.561 964.86)\"\u003e \u003cmask id=\"b\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#a\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#a\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#b)\" d=\"M507.433 986.135V567.83l-519.26-308.953v453.269L-.41 717.04l117.006 72.149V948.07l138.88 62.987V712.146l-140.758-87.872V490.983l264.289 156.582v430.58L762.234 1299.5V420.663L-4.59-18.859v152.075l4.18 7.775L620.867 507.06v543.835z\" /\u003e \u003c/g\u003e \u003cg transform=\"rotate(180 916.878 545.928)\"\u003e \u003cmask id=\"d\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#c\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#c\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#d)\" d=\"M1484.755 435.078 742.928 870.46.54 435.661l132.67-78.493 609.464 356.767 624.63-364.565-359.202-206.601-10.925 6.202-254.249 140.671-138.725-84.646-120.337 70.162 259.062 148.79 253.239-142.774 138.533 81.993-390.762 220.966-506.256-290.958L636.734 60.672l108.215 67.2L910.056 38.82l616.077 345.261z\" /\u003e \u003c/g\u003e \u003cg fill-rule=\"nonzero\"\u003e \u003cpath fill=\"#3FB594\" d=\"m1092.19 1928.268 740.669-437.063v-833.99l-740.67 434.778z\" /\u003e \u003cpath fill=\"#FFF\" d=\"M1700.908 733.433v443.238l-377.737 213.875v-140.165l268.929-151.446V796.972l-134.862 78.876v146.551l-255.115 147.81v435.511l630.661-361.338.416-588.515zm-608.637 1195.244v-139.69l741.015-431.897.634 133.754z\" /\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M585.685 943.585V1361.89L1104.95 1670.84V1217.57L1093.53 1212.68L976.522 1140.53V981.65L837.642 918.663V1217.57L978.4 1305.45L978.4 1438.74L714.111 1282.16L714.111 851.575L330.884 630.22L330.884 1509.06L1097.71 1948.58V1796.5L1093.53 1788.73L472.251 1422.66V878.825L585.685 943.585Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M349 656.778L1090.83 221.396L1833.21 656.195L1700.54 734.688L1091.08 377.921L466.451 742.486L825.653 949.087L836.578 942.885L1090.83 802.214L1229.55 886.86L1349.89 816.698L1090.83 667.908L837.588 810.682L699.055 728.689L1089.82 507.723L1596.07 798.681L1197.02 1031.18L1088.81 963.984L923.699 1053.04L307.622 707.775L349 656.778Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M1700.91 733.433V1176.67L1323.17 1390.55V1250.38L1592.1 1098.94V796.972L1457.24 875.848V1022.4L1202.12 1170.21V1605.72L1832.78 1244.38L1833.2 655.867L1700.91 733.433ZM1092.27 1928.68V1788.99L1833.28 1357.09L1833.92 1490.84L1092.27 1928.68Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json b/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json index 209a130264e..8126d1eb374 100644 --- a/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json +++ b/server/meshmodel/akri/0.12.55/v1.0.0/components/Instance.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#0aaba9", - "secondaryColor": "#4FF0EE", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e \u003cdefs\u003e \u003cpath id=\"a\" d=\"M744.151 1273.145.22 843.325V.884L744.15 435.97z\" /\u003e \u003cpath id=\"c\" d=\"m742.709.099 742.867 435.22L742.71 870.537.63 435.75z\" /\u003e \u003c/defs\u003e \u003cg fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg transform=\"rotate(180 546.561 964.86)\"\u003e \u003cmask id=\"b\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#a\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#a\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#b)\" d=\"M507.433 986.135V567.83l-519.26-308.953v453.269L-.41 717.04l117.006 72.149V948.07l138.88 62.987V712.146l-140.758-87.872V490.983l264.289 156.582v430.58L762.234 1299.5V420.663L-4.59-18.859v152.075l4.18 7.775L620.867 507.06v543.835z\" /\u003e \u003c/g\u003e \u003cg transform=\"rotate(180 916.878 545.928)\"\u003e \u003cmask id=\"d\" fill=\"#fff\"\u003e \u003cuse xlink:href=\"#c\" /\u003e \u003c/mask\u003e \u003cuse fill=\"#3FB594\" xlink:href=\"#c\" /\u003e \u003cpath fill=\"#FFF\" fill-rule=\"nonzero\" mask=\"url(#d)\" d=\"M1484.755 435.078 742.928 870.46.54 435.661l132.67-78.493 609.464 356.767 624.63-364.565-359.202-206.601-10.925 6.202-254.249 140.671-138.725-84.646-120.337 70.162 259.062 148.79 253.239-142.774 138.533 81.993-390.762 220.966-506.256-290.958L636.734 60.672l108.215 67.2L910.056 38.82l616.077 345.261z\" /\u003e \u003c/g\u003e \u003cg fill-rule=\"nonzero\"\u003e \u003cpath fill=\"#3FB594\" d=\"m1092.19 1928.268 740.669-437.063v-833.99l-740.67 434.778z\" /\u003e \u003cpath fill=\"#FFF\" d=\"M1700.908 733.433v443.238l-377.737 213.875v-140.165l268.929-151.446V796.972l-134.862 78.876v146.551l-255.115 147.81v435.511l630.661-361.338.416-588.515zm-608.637 1195.244v-139.69l741.015-431.897.634 133.754z\" /\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"2155\" height=\"2155\" viewBox=\"0 0 2155 2155\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M585.685 943.585V1361.89L1104.95 1670.84V1217.57L1093.53 1212.68L976.522 1140.53V981.65L837.642 918.663V1217.57L978.4 1305.45L978.4 1438.74L714.111 1282.16L714.111 851.575L330.884 630.22L330.884 1509.06L1097.71 1948.58V1796.5L1093.53 1788.73L472.251 1422.66V878.825L585.685 943.585Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M349 656.778L1090.83 221.396L1833.21 656.195L1700.54 734.688L1091.08 377.921L466.451 742.486L825.653 949.087L836.578 942.885L1090.83 802.214L1229.55 886.86L1349.89 816.698L1090.83 667.908L837.588 810.682L699.055 728.689L1089.82 507.723L1596.07 798.681L1197.02 1031.18L1088.81 963.984L923.699 1053.04L307.622 707.775L349 656.778Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M1700.91 733.433V1176.67L1323.17 1390.55V1250.38L1592.1 1098.94V796.972L1457.24 875.848V1022.4L1202.12 1170.21V1605.72L1832.78 1244.38L1833.2 655.867L1700.91 733.433ZM1092.27 1928.68V1788.99L1833.28 1357.09L1833.92 1490.84L1092.27 1928.68Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json index debea13e227..170565c747f 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureAssignedIdentity.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json index f04156696f7..cdcfa0bf337 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentity.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json index 5c235f99361..8f9e4463b91 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzureIdentityBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json index 33179ebc448..ae594e3af46 100644 --- a/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json +++ b/server/meshmodel/aks-appgw-fe/1.0.0-rc1/v1.0.0/components/AzurePodIdentityException.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#5e9624", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#5e9624\" /\u003e\u003cstop offset=\"0.55\" stop-color=\"#6dad2a\" /\u003e\u003cstop offset=\"1\" stop-color=\"#76bc2d\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e\u003cstop offset=\"0.12\" stop-color=\"#d7d7d7\" /\u003e\u003cstop offset=\"0.42\" stop-color=\"#ebebeb\" /\u003e\u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e\u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e\u003c/defs\u003e\u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e\u003cg\u003e\u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#fff\" /\u003e\u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#fff\" /\u003e\u003c/g\u003e\u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#0078d4\" /\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e\u003cg\u003e\u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e\u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#f2f2f2\" /\u003e\u003cg\u003e\u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#f2f2f2\" opacity=\"0.55\" /\u003e\u003c/g\u003e\u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#f2f2f2\" /\u003e\u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#f2f2f2\" /\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"acac5a34-a032-49f9-9397-37f4f1b4ae9a\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"f6d5399b-a5cb-4c09-96cc-9e3bb1af2386\" x1=\"9\" y1=\"19.25\" x2=\"9\" y2=\"-0.46\" gradientTransform=\"translate(9 -3.73) rotate(45)\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ffffff\" /\u003e \u003cstop offset=\"0.55\" stop-color=\"#fff\" /\u003e \u003cstop offset=\"1\" stop-color=\"#eeeeee\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"a43242a2-4d95-4f6d-8870-2702ceb6aebc\" x1=\"7.54\" y1=\"6.44\" x2=\"7.53\" y2=\"5.18\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#ccc\" /\u003e \u003cstop offset=\"0.12\" stop-color=\"#dfdfdf\" /\u003e \u003cstop offset=\"0.42\" stop-color=\"#efefef\" /\u003e \u003cstop offset=\"0.72\" stop-color=\"#f8f8f8\" /\u003e \u003cstop offset=\"1\" stop-color=\"#fcfcfc\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"eedce6dd-706a-43c4-ac66-66b73578221d\" x1=\"9.36\" y1=\"7.69\" x2=\"9.36\" y2=\"6.57\" href=\"#a43242a2-4d95-4f6d-8870-2702ceb6aebc\" /\u003e \u003c/defs\u003e \u003crect x=\"2.82\" y=\"2.82\" width=\"12.35\" height=\"12.35\" rx=\"0.57\" transform=\"translate(-3.73 9) rotate(-45)\" fill=\"url(#f6d5399b-a5cb-4c09-96cc-9e3bb1af2386)\" /\u003e \u003cg\u003e \u003cpath d=\"M10.89,10.51h2.84a.11.11,0,0,0,.1-.11V7.57a.1.1,0,0,0-.18-.07l-.78.78,0,.05a.1.1,0,0,1-.14,0L9.26,4.91a.1.1,0,0,0-.14,0l-.88.88a.11.11,0,0,0,0,.15l3.41,3.41a.11.11,0,0,1,0,.15l-.05.05-.78.78A.11.11,0,0,0,10.89,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.92,10.51H4.08A.11.11,0,0,1,4,10.4V7.57a.1.1,0,0,1,.17-.07l.79.78,0,.05a.1.1,0,0,0,.14,0L8.55,4.91a.1.1,0,0,1,.14,0l.88.88a.11.11,0,0,1,0,.15L6.16,9.35a.11.11,0,0,0,0,.15l0,.05.78.78A.11.11,0,0,1,6.92,10.51Z\" fill=\"#000\" /\u003e \u003cpath d=\"M6.82,13.07l2,2a.1.1,0,0,0,.14,0l2-2a.1.1,0,0,0-.07-.17H9.72a.11.11,0,0,1-.1-.1V8a.1.1,0,0,0-.1-.11H8.28A.11.11,0,0,0,8.17,8V12.8a.1.1,0,0,1-.1.1H6.89A.1.1,0,0,0,6.82,13.07Z\" fill=\"#000\" /\u003e \u003c/g\u003e \u003cpath id=\"ac0a9c0c-2e8c-4843-b02b-2fadf76b27d0\" d=\"M10.65,7.78A2.71,2.71,0,0,1,7.33,3.5l0,0a2.71,2.71,0,0,1,3.29,4.3\" fill=\"#000\" /\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"url(#a43242a2-4d95-4f6d-8870-2702ceb6aebc)\" /\u003e \u003cg\u003e \u003cpath d=\"M6.67,7l.19.3L7,7.5a5.94,5.94,0,0,1,.34-1.1.85.85,0,0,1-.45-.23A6.71,6.71,0,0,0,6.67,7Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M7.24,4.73A4,4,0,0,1,7,3.8a2.48,2.48,0,0,0-.34.46A3.51,3.51,0,0,0,6.86,5,1,1,0,0,1,7.24,4.73Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M8.17,6.14a.87.87,0,0,1-.48.26,4.62,4.62,0,0,0,.46.41,4.14,4.14,0,0,0,.65.39V7.13A.53.53,0,0,1,9,6.73,3.6,3.6,0,0,1,8.17,6.14Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M10.79,7.2a4.14,4.14,0,0,1-.87-.1v0a.55.55,0,0,1-.16.39,3.84,3.84,0,0,0,1.08.08,2.93,2.93,0,0,0,.37-.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003c!-- \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"url(#eedce6dd-706a-43c4-ac66-66b73578221d)\" /\u003e --\u003e \u003ccircle cx=\"10.64\" cy=\"5.74\" r=\"0.6\" fill=\"#fff\" /\u003e \u003cg\u003e \u003cpath d=\"M9.21,4.42A4.29,4.29,0,0,1,11.09,4a2.24,2.24,0,0,0-.47-.45,4.5,4.5,0,0,0-1.49.35c-.1,0-.19.11-.29.16h0a5.85,5.85,0,0,1-.63-.93l-.34.13a5.35,5.35,0,0,0,.65,1,3.92,3.92,0,0,0-.67.55.87.87,0,0,1,.43.35,3.29,3.29,0,0,1,.61-.48,9.16,9.16,0,0,0,1.17,1,.57.57,0,0,1,.2-.32A8.44,8.44,0,0,1,9.21,4.42Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003cpath d=\"M11.55,6.09h0l-.1,0h0l-.08,0h0l-.1-.06a.61.61,0,0,1-.2.3l.12.07h0l.11.06h0l.28.14h0a3.58,3.58,0,0,0,.09-.35Z\" fill=\"#fff\" opacity=\"0.55\" /\u003e \u003c/g\u003e \u003ccircle cx=\"7.53\" cy=\"5.55\" r=\"0.87\" fill=\"#fff\" /\u003e \u003ccircle cx=\"9.36\" cy=\"7.13\" r=\"0.56\" fill=\"#fff\" /\u003e \u003c/svg\u003e" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json index 16e0172f33b..715e0f7795c 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json index 036d3d79d12..4651dcd0311 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseInstallationTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json index bd30cc2835c..7fc61ec8456 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseKeeperInstallation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json index 98815a3af57..8310d3809b3 100644 --- a/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json +++ b/server/meshmodel/altinity-clickhouse-operator/0.23.5/v1.0.0/components/ClickHouseOperatorConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10424)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"#199DCF\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"#199DCF\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10424\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27227_10413)\"\u003e\n\u003cpath d=\"M18.7204 72.33L101.38 24.24L75.4104 9.23999V9.28999L18.6104 42.09L18.7204 42.16V72.33Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.8203 75.09L47.0103 88.57V61.59L23.8203 75.09Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M72.7697 109.26L18.7197 78.0601V140.46L72.7697 109.26Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M101.3 56.84L129.55 40.4L106.41 27.04L78.0703 43.53L101.3 56.84Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M103.67 63.96V123.77L132.09 140.18V80.49L103.67 63.96Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M106.23 59.7L132.09 74.67V44.66L106.23 59.7Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27227_10413\"\u003e\n\u003crect width=\"150\" height=\"150\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json index 264f784303a..0672d5b6d09 100644 --- a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json +++ b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeature.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"150\" height=\"150\" rx=\"75\" fill=\"black\"/\u003e\n\u003cpath d=\"M43.7135 87.1392H37.1692L35.1672 82.335H24.2604L22.4365 87.1392H16L25.8334 62.8749H32.8781L43.7135 87.1392ZM29.4454 68.6729L25.8695 78.1007H33.3792L29.4454 68.6729ZM67.4858 62.8749H72.7781V87.1392H66.6983V71.983L60.1186 79.5959H59.1892L52.6099 71.983V87.1389H46.5301V62.8749H51.8224L59.6535 71.8759L67.4858 62.8749ZM88.1828 62.8749C97.0865 62.8749 101.663 68.3887 101.663 75.0417C101.663 82.0147 97.2294 87.1392 87.503 87.1392H77.4186V62.8749H88.1828ZM83.4979 82.692H87.4666C93.5815 82.692 95.4054 78.5641 95.4054 75.0057C95.4054 70.8427 93.1522 67.3215 87.395 67.3215H83.4978L83.4979 82.692ZM113.758 68.6282L106.093 61H134V88.7664L126.334 81.1391V68.6282H113.758ZM113.749 70.1567L105.857 78.0086V89H116.903L124.795 81.1481H113.749V70.1567Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#000\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#fff\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json index 8b05bcf8750..fec25a1dc6d 100644 --- a/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json +++ b/server/meshmodel/amd-gpu/0.13.0/v1.0.0/components/NodeFeatureRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"150\" height=\"150\" viewBox=\"0 0 150 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"150\" height=\"150\" rx=\"75\" fill=\"black\"/\u003e\n\u003cpath d=\"M43.7135 87.1392H37.1692L35.1672 82.335H24.2604L22.4365 87.1392H16L25.8334 62.8749H32.8781L43.7135 87.1392ZM29.4454 68.6729L25.8695 78.1007H33.3792L29.4454 68.6729ZM67.4858 62.8749H72.7781V87.1392H66.6983V71.983L60.1186 79.5959H59.1892L52.6099 71.983V87.1389H46.5301V62.8749H51.8224L59.6535 71.8759L67.4858 62.8749ZM88.1828 62.8749C97.0865 62.8749 101.663 68.3887 101.663 75.0417C101.663 82.0147 97.2294 87.1392 87.503 87.1392H77.4186V62.8749H88.1828ZM83.4979 82.692H87.4666C93.5815 82.692 95.4054 78.5641 95.4054 75.0057C95.4054 70.8427 93.1522 67.3215 87.395 67.3215H83.4978L83.4979 82.692ZM113.758 68.6282L106.093 61H134V88.7664L126.334 81.1391V68.6282H113.758ZM113.749 70.1567L105.857 78.0086V89H116.903L124.795 81.1481H113.749V70.1567Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#000\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"190.803\"\u003e\u003cpath fill=\"#fff\" d=\"M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286L66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z\"/\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json index 4a74dee7dfd..414deef7648 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaAgentInfo.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AntreaAgentInfo", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json index 74b1065268a..a685612f8a5 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/AntreaControllerInfo.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AntreaControllerInfo", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json index e89b159ce2e..afa7a63d20d 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterGroup", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json index 999a72fa9b1..890c8b711e0 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ClusterNetworkPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterNetworkPolicy", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json index 4ef4b7a2b0e..81927b1cf9f 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Egress.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Egress", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json index 6da26bf4e15..f3258abd89c 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalEntity.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalEntity", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json index c16557f25a0..bd41af56a22 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalIPPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalIPPool", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json index 369a4b647dc..4a865f37d60 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/ExternalNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExternalNode", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json index 90517242872..938e030da6e 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Group.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Group", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json index 1a1cfe8122a..6fa3d884ede 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/IPPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IPPool", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json index dd1938866d1..4d568cf6981 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/NetworkPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "NetworkPolicy", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json index 30bc5901b4f..0566e8585eb 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/SupportBundleCollection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "SupportBundleCollection", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json index a0bcb26fd90..93a01f2aed6 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Tier.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Tier", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json index 623d2043aaa..316259fef31 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/Traceflow.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Traceflow", diff --git a/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json b/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json index 2dcb4486b43..9768ce610d8 100644 --- a/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json +++ b/server/meshmodel/antrea/2.0.0/v1.0.0/components/TrafficControl.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00c1d5", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-2.23 -2.1 109.2 109.08\" enable-background=\"new 0 0 105 105\"\u003e\u003cpath d=\"M29.3 81.1zm-4.1-3.9z\" fill=\"#00c1d5\"/\u003e\u003cpath fill=\"#1d428a\" d=\"M78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9a60.25 60.25 0 0 0 6.2-14.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1a30.3 30.3 0 0 0 13 2.3c12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zM80.5 44l-.3 3.6-1 8.1 4.7-.5 7.3-.8 3-12.4-13.7 2zm-5.3-5l.7-11.3c-3.6.5-7.2.9-10.8 1.3l-1 11.4v.3h.3L75.2 39zM59.8 23.9c.3-4.5.7-9 1.1-13.3l-11.1 3.2c-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1l.9-10.3c-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2a106.52 106.52 0 0 0 2.7-10.8c-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm-20.8-5.9c1 1.6 2.4 3 4.1 3.9h.1c.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.7-7.2 3.7-10.4 6.1zm25.6-7.1c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM77 16.6c-3.3-2.2-6.8-4-10.5-5.2l-1.1 12 10.9-1.3c.2-1.9.5-3.7.7-5.5zM43.6 27l.3-7.4c0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5a31.67 31.67 0 0 0 2.6 11.8c-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zM87 26c-1.8.3-3.6.7-5.4.9l-.8 11.4 12.1-1.8c-1.5-3.8-3.5-7.3-5.9-10.5zM57.5 47.7c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\"/\u003e\u003cg fill=\"#00c1d5\"\u003e\u003cpath d=\"M94.8 42.4c.1.6.3 1.1.4 1.7l-.4-1.7zm.5 2.2l.3 1.6-.3-1.6zm-1-4.3c.2.6.3 1.2.5 1.8-.2-.6-.4-1.2-.5-1.8zm1.5 16.4c-.1 1.4-.3 2.7-.6 4 .3-1.3.4-2.7.6-4zm.1-2.1c0 .6 0 1.1-.1 1.7.1-.6.1-1.1.1-1.7zm0-5.3c0 .3.1.7.1 1-.1-.3-.1-.6-.1-1zm-2.3-11l.6 1.9c-.1-.6-.3-1.2-.6-1.9zm0 0l-.7-1.9c.3.7.5 1.3.7 1.9zm2 8.6c.1.4.1.9.2 1.3-.1-.4-.2-.9-.2-1.3zM87 26c-1.4-1.8-2.9-3.5-4.5-5 1.6 1.5 3.1 3.2 4.5 5zm-7.2-7.3l2.5 2.2c-.8-.8-1.7-1.6-2.5-2.2zm-.1-.1l-2.7-2c.9.6 1.8 1.3 2.7 2z\"/\u003e\u003cpath d=\"M95.9 50.3c0-.3-.1-.7-.1-1s0-.7-.1-1.1-.1-.9-.2-1.3l-.1-.7-.3-1.6c0-.2 0-.3-.1-.4-.1-.6-.2-1.2-.4-1.7l-.1-.2c-.1-.6-.3-1.2-.5-1.8v-.1l-.6-1.9-.7-1.9c-3.9.7-8 1.3-12.1 1.8l.8-11.4 5.3-.9h.1c-1.4-1.8-2.9-3.5-4.5-5l-.2-.2a26.22 26.22 0 0 0-2.5-2.2l-.1-.1c-.9-.7-1.8-1.4-2.7-2-.3 1.8-.5 3.5-.7 5.3-3.6.5-7.2.9-10.9 1.3.3-4.1.6-8.1 1.1-12-22.5-7.6-47.2 4.5-54.9 27.3S15.8 86 38.6 93.7s47.5-4.4 55.2-27.2c.6-1.9 1.2-3.8 1.5-5.8l.6-4v-.4c.1-.5.1-1.1.1-1.7 0-.7.1-1.4.1-2.1s-.1-1.4-.2-2.2zm-31.8-10c.4-3.8.7-7.6 1-11.4l10.8-1.3c-.3 3.8-.5 7.6-.7 11.3l-10.8 1.6h-.3v-.2zm-.7 6.3l1.7-.3 9.7-1.5c-.1.8-.1 1.7-.2 2.5-.3 3.1-.7 6.2-1.2 9-4 .5-8 1-12 1.7.8-3.8 1.5-7.6 2-11.4zm-6.6 24c1-2.1 1.9-4.2 2.7-6.4 4.1-.8 8.2-1.4 12.5-1.9-.8 2.9-1.9 5.6-3.3 8.2-4-.5-7.9-.5-11.9.1zm8 5.1c-4 4.1-9.8 6.8-18.7 7.4 2.5-1.7 4.8-3.8 6.7-6.1 3.8-.9 7.9-1.4 12-1.3zM49.6 19.5c.1-1.9.1-3.8.2-5.6 3.6-1.1 7.4-2.1 11.1-3.2-.5 4.4-.8 8.8-1.1 13.3-1.3.2-2.6.4-3.9.5-2.2.3-4.4.7-6.6 1.2l.3-6.2zm-.5 12c2.4-.5 4.9-1 7.4-1.4 1-.1 1.9-.3 2.9-.4L58.5 40c-.1.6-.1 1.2-.2 1.7-3.6.7-7.1 1.6-10.4 2.6.5-4.3.9-8.6 1.2-12.8zm-2 19.1c3.4-1.2 6.9-2.1 10.5-2.9-.6 3.9-1.3 7.7-2.4 11.4-3.6.7-7.1 1.6-10.6 2.6 1-3.6 1.8-7.4 2.5-11.1zm-4.6-34.4l1.6-.5c0 1.3-.1 2.6-.1 3.9l-.3 7.5c-3.9 1-7.7 2.6-11.2 4.5-1.1-2.9-2.5-5.8-4.2-8.4 4.3-3 9.1-5.3 14.2-7zm-8 34c.5-4.4.3-8.8-.6-13.2 2.9-1.7 6-3.1 9.3-4-.3 4.5-.7 9.1-1.3 13.5-2.5 1-5 2.3-7.4 3.7zm6.3 2.9c-.7 3.7-1.6 7.3-2.7 10.9-4.4 1.7-8.7 3.7-12.7 6.2 1.7-6.4 5.4-10.8 10.5-14.3 1.6-1 3.2-2 4.9-2.8zm-24 12.4a31.67 31.67 0 0 1-2.6-11.8c0-12.2 3.2-20 8.1-25.5.4-.5.9-1 1.4-1.4a31.2 31.2 0 0 1 3.9 8c-6.7 5.7-11 14.4-11 27 0 1.3.1 2.5.2 3.7zm5.5-4c0-9.8 2.5-16 6.6-20.4.4 4.6.2 9.3-.8 13.9h.1c-2.4 2.4-4.5 5.1-6 8.2l.1-1.7zm7.9 20c-.3-.1-.6-.3-.9-.4-1.7-.9-3.1-2.2-4.1-3.9 3.2-2.4 6.7-4.4 10.3-6-1.4 3.6-3.2 7-5.3 10.3zm12.4-13.1c3.3-1.1 6.8-2.1 10.4-2.9-.6 1.6-1.4 3.1-2.3 4.6-3.2 5.5-7.5 9.5-14.1 11.5 2.5-4.2 4.5-8.6 6-13.2zm35.9 13.4c-5.3 5.3-12.8 8.9-24.9 9.5a30.3 30.3 0 0 1-13-2.3c1.4 0 3 0 4.5-.1 12.4-.7 20.9-5.2 26.2-12.2 3 .8 5.9 2 8.6 3.6-.5.5-1 1-1.4 1.5zm11-21C88.1 66 86 70.9 83.3 75.6c-2.8-1.6-5.8-2.9-8.9-3.9 1.6-3.2 2.8-6.7 3.7-10.2 2.1-.2 4.1-.5 6.2-.7l5.4-.6c-.2.2-.2.4-.2.6zm1.7-6.5c-2.4.3-4.8.5-7.3.8l-4.7.5c.4-2.7.8-5.4 1-8.1l.3-3.6c4.6-.6 9.2-1.3 13.6-2l-2.9 12.4z\"/\u003e\u003c/g\u003e\u003cg fill=\"#717074\"\u003e\u003cpath d=\"M95.2 44.1c0 .2 0 .3.1.4-.1-.1-.1-.2-.1-.4zm-.5-1.9l.1.2-.1-.2zm-1.1-3.9zm.6 1.9zM79.7 18.6zm16.1 37.7v.4-.4zm-.3-10.1l.1.7-.1-.7z\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39-50.9 34.5S5.3 67.9 9.8 44.3s27.3-39 50.9-34.5c5.8 1.1 11.4 3.4 16.3 6.8.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5a42.03 42.03 0 0 1 6 10.5c.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4l.3 1.6.1.7c0 .4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.3.6-.3 1.1-.4 1.7zM82.3 20.8l.2.2-.2-.2zM96 52.5l-.1 2.1c.1-.7.1-1.4.1-2.1zm-.2-4.3c0 .4.1.7.1 1.1 0-.3-.1-.7-.1-1.1zm.1 2.1l.1 2.2-.1-2.2z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-2.23 -2.10 109.20 109.08\" width='109.2' height='109.08'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 105 105}\u003c/style\u003e\u003cstyle\u003e.st0{fill:#fff}\u003c/style\u003e\u003cpath d=\"M25.2 77.2c1 1.6 2.4 3 4.1 3.9.3.2.6.3.9.4 2.1-3.3 3.8-6.8 5.3-10.4-3.7 1.6-7.1 3.7-10.3 6.1zM78 61.5c-.8 3.5-2 6.9-3.7 10.2 3.1 1 6.1 2.3 8.9 3.9C85.9 71 88 66 89.4 60.8c0-.2.1-.4.2-.6l-5.4.6c-2.1.2-4.1.5-6.2.7zm-6.7 15.1c-5.3 7-13.8 11.6-26.2 12.2-1.6.1-3.1.1-4.5.1 4.1 1.7 8.5 2.5 13 2.3 12.1-.6 19.6-4.2 24.9-9.5.5-.5.9-1 1.4-1.5-2.8-1.5-5.6-2.7-8.6-3.6zm8.9-29c-.3 2.7-.6 5.4-1 8.1l4.7-.5c2.5-.3 4.9-.5 7.3-.8 1-4 1.9-8.2 3-12.4-4.5.8-9.1 1.4-13.7 2l-.3 3.6zm-5-8.6c.2-3.7.4-7.5.7-11.3-3.6.5-7.2.9-10.8 1.3-.3 3.8-.6 7.6-1 11.4v.3h.3c3.6-.6 7.2-1.2 10.8-1.7zM59.8 23.9c.3-4.5.7-9 1.1-13.3-3.8 1.1-7.5 2.2-11.1 3.2-.1 1.8-.1 3.7-.2 5.6s-.2 4.1-.2 6.1l6.6-1.2c1.2 0 2.5-.2 3.8-.4zm14.7 23.4c.1-.8.1-1.7.2-2.5-3.3.5-6.5.9-9.7 1.5l-1.7.3c-.5 3.8-1.2 7.7-2.1 11.4 4-.7 8-1.2 12-1.7.6-2.9 1-5.9 1.3-9zM72 62.2c-4.2.5-8.4 1.2-12.5 1.9-.8 2.2-1.6 4.3-2.7 6.4 3.9-.5 7.9-.6 11.8-.1 1.5-2.5 2.6-5.3 3.4-8.2zM58.5 40.1c.3-3.4.6-6.8.9-10.3-1 .1-1.9.2-2.9.4-2.6.4-5 .8-7.4 1.4-.3 4.3-.6 8.6-1.1 12.9 3.3-1 6.8-1.9 10.4-2.6 0-.7 0-1.3.1-1.8zM43.3 33c-3.3.9-6.4 2.3-9.3 4 .8 4.3 1 8.8.6 13.2 2.3-1.4 4.8-2.7 7.4-3.7.5-4.5.9-9 1.3-13.5zM28.2 55c.9-4.6 1.2-9.3.8-13.9-4.2 4.4-6.7 10.6-6.7 20.4v1.7c1.5-3 3.6-5.8 5.9-8.2zm-2.7 15.2c4-2.5 8.3-4.6 12.7-6.2 1.1-3.6 2-7.2 2.7-10.8-1.7.8-3.3 1.7-4.8 2.8-5.2 3.4-8.9 7.8-10.6 14.2zM46 83.1c9-.6 14.7-3.3 18.7-7.4-4.1-.1-8.1.3-12.1 1.3-1.8 2.3-4.1 4.4-6.6 6.1zm4.8-13c.9-1.5 1.6-3 2.3-4.6-3.6.8-7.1 1.8-10.4 2.9-1.6 4.6-3.6 9-6 13.2 6.6-2 10.8-6 14.1-11.5zM43.6 27c.1-2.5.2-5 .3-7.4 0-1.3.1-2.6.1-3.9l-1.5.5c-5 1.7-9.9 4-14.3 6.9 1.7 2.7 3.1 5.5 4.2 8.4 3.5-1.9 7.3-3.5 11.2-4.5zm-16 7.8c-1-2.8-2.3-5.5-3.9-8l-1.4 1.4c-5 5.6-8.1 13.3-8.1 25.5.1 4.1.9 8.1 2.6 11.8-.1-1.2-.1-2.4-.1-3.7-.1-12.6 4.2-21.4 10.9-27zm29.9 12.9c-3.6.8-7.1 1.7-10.5 2.9-.6 3.8-1.4 7.5-2.4 11.2 3.4-1 7-1.9 10.5-2.6 1.1-3.8 1.9-7.6 2.4-11.5z\" class=\"st0\"/\u003e\u003cpath d=\"M52.5 0C23.5 0 0 23.5 0 52.5S23.5 105 52.5 105 105 81.5 105 52.5 81.5 0 52.5 0zm43.3 56.3v.4c-.1 1.4-.3 2.7-.6 4-4.5 23.6-27.3 39.1-50.9 34.5S5.3 67.9 9.8 44.3 37.1 5.2 60.7 9.8c2 .4 3.9.9 5.8 1.5-.4 3.9-.8 7.9-1.1 12 3.7-.4 7.3-.9 10.9-1.3.2-1.8.4-3.6.7-5.3.9.6 1.8 1.3 2.7 2l.1.1c.8.7 1.7 1.4 2.5 2.2l.2.2c1.6 1.5 3.1 3.2 4.5 5h-.1c-1.7.3-3.5.7-5.3.9-.3 3.7-.5 7.5-.8 11.4 4.1-.6 8.2-1.2 12.1-1.8.2.6.5 1.2.7 1.9.2.6.4 1.2.6 1.9v.1c.2.6.3 1.2.5 1.8l.1.2c.1.6.3 1.1.4 1.7 0 .2 0 .3.1.4.1.5.2 1 .3 1.6l.1.7c.1.4.1.9.2 1.3s.1.7.1 1.1.1.7.1 1c0 .7.1 1.4.1 2.2s0 1.4-.1 2.1c-.2.5-.2 1-.3 1.6z\" class=\"st0\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TrafficControl", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json index 6065834c3ea..c608ba99ec1 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/Chaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Chaos", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json index 1c92f86dd64..39aaa18982d 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ComputeNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\t.st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n\t.st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n\t.st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n\t.st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n\t.st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n\t.st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n\t.st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n\t.st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n\t.st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n\t.st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n\t.st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n\tL405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n\tC206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n\tc-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n\tc-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n\tc141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n\ts50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n\tc0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n\tc5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n\tc-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n\tC407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n\tC409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n\tc-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n\tc12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n\tc3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNode", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json index 20ce8c2b044..0f4d1572585 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\t.st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n\t.st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n\t.st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n\t.st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n\t.st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n\t.st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n\t.st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n\t.st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n\t.st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n\t.st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n\t.st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n\tL405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n\tC206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n\tc-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n\tc-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n\tc141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n\ts50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n\tc0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n\tc5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n\tc-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n\tC407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n\tC409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n\tc-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n\tc12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n\tc3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ShardingSphereProxy", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json index 4422e20da1b..7232e1afd74 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/ShardingSphereProxyServerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\t.st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n\t.st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n\t.st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n\t.st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n\t.st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n\t.st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n\t.st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n\t.st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n\t.st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n\t.st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n\t.st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n\tL405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n\tC206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n\tc-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n\tc-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n\tc141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n\ts50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n\tc0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n\tC424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n\tc5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n\tc-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n\tC407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n\tC409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n\tc-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n\tc12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n\tc3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n\tc-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n\tC102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n .st1{opacity:0.7;fill:#FFFFFF;}\n .st2{opacity:0.8;fill:#FFFFFF;}\n .st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ShardingSphereProxyServerConfig", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json index 6a51b7a4165..c8c8bfd97c1 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F26F23", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageNode", diff --git a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json index f927027a00d..a0815e8f643 100644 --- a/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json +++ b/server/meshmodel/apache-shardingsphere-operator-charts/0.3.0/v1.0.0/components/StorageProvider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#F26F23", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:url(#SVGID_1_);}\n .st1{fill:url(#SVGID_00000048479137264441295800000015305632511679783579_);}\n .st2{fill:url(#SVGID_00000079444439365617513470000008873537078183004807_);}\n .st3{fill:url(#SVGID_00000085244092594126811220000004870925416882340480_);}\n .st4{fill:url(#SVGID_00000156551785585636839420000004672876962229801646_);}\n .st5{fill:url(#SVGID_00000143596517035859543620000017165593322986315165_);}\n .st6{fill:url(#SVGID_00000119116509585978813410000002870741405830441398_);}\n .st7{fill:url(#SVGID_00000180335030621544976450000001730413184683921575_);}\n .st8{fill:url(#SVGID_00000016792197068337254320000005485720738200154270_);}\n .st9{fill:url(#SVGID_00000146473823591516210430000016330170840428982962_);}\n .st10{fill:url(#SVGID_00000085227331647079081970000003660941282163252357_);}\n .st11{fill:url(#SVGID_00000149346140678229851860000005578301544471231644_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1134.8152\" y1=\"853.1163\" x2=\"-1133.6351\" y2=\"853.1163\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000016788694437581376790000018212529496731700357_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1137.8751\" y1=\"841.6879\" x2=\"-1135.8451\" y2=\"841.6879\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000016788694437581376790000018212529496731700357_);\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6\n C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000173139842408622046590000005020073825911816601_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1131.9252\" y1=\"862.5554\" x2=\"-1131.3654\" y2=\"862.5554\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000173139842408622046590000005020073825911816601_);\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9\n L405.4,320.4z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000091017207141570692330000004232413531517249980_\" gradientUnits=\"userSpaceOnUse\" x1=\"-939.5352\" y1=\"697.3776\" x2=\"-922.8535\" y2=\"697.3776\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000091017207141570692330000004232413531517249980_);\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5\n C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000022522355804184397130000015095511671258988205_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1238.1216\" y1=\"795.8593\" x2=\"-893.9634\" y2=\"795.8593\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6C214\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#EC7D23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000022522355804184397130000015095511671258988205_);\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6\n c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9\n c-27.2,95.6-98.5,142.2-155.7,161.5c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7\n c141.2-1.4,254.5-116.1,253.1-256.2c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9\n s50.1-53.7,10-197.7c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000049937548423928793210000002938534346364514951_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1138.8734\" y1=\"789.5358\" x2=\"-773.9839\" y2=\"789.5358\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#EB7D23\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#CB6526\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000049937548423928793210000002938534346364514951_);\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9\n c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6\n C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6\n c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6\n c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000134943453715727181270000003671591662654011016_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1133.6351\" y1=\"858.5318\" x2=\"-1131.9252\" y2=\"858.5318\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000134943453715727181270000003671591662654011016_);\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1\n C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000126284252159219576130000009521538708747432090_\" gradientUnits=\"userSpaceOnUse\" x1=\"-1135.8451\" y1=\"848.6325\" x2=\"-1134.8152\" y2=\"848.6325\" gradientTransform=\"matrix(-0.9999 1.029720e-02 1.029720e-02 0.9999 -734.8176 -531.4161)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000126284252159219576130000009521538708747432090_);\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3\n C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000169536039413351168190000010882704550492390033_\" gradientUnits=\"userSpaceOnUse\" x1=\"133.6252\" y1=\"499.9456\" x2=\"133.6252\" y2=\"499.9456\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000169536039413351168190000010882704550492390033_);\" d=\"M133.6,204.1\"/\u003e\n\u003clinearGradient id=\"SVGID_00000096774566774790217440000002753567093049692549_\" gradientUnits=\"userSpaceOnUse\" x1=\"5.161326e-03\" y1=\"495.9446\" x2=\"288.7552\" y2=\"495.9446\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F89E1D\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#F26F23;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000096774566774790217440000002753567093049692549_);\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5\n c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8\n c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2\n c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000118383706173138645060000005765569012560404635_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"433.1856\" x2=\"288.75\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#BED630\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#58A947;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000118383706173138645060000005765569012560404635_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003clinearGradient id=\"SVGID_00000144320157633982040090000008634866747267698359_\" gradientUnits=\"userSpaceOnUse\" x1=\"-48.6548\" y1=\"433.1856\" x2=\"146.3252\" y2=\"433.1856\" gradientTransform=\"matrix(1 0 0 -1 0 704.0111)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#ED7452;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"3.000000e-02\" style=\"stop-color:#EC7350;stop-opacity:0.97\"/\u003e\n \u003cstop offset=\"1\" style=\"stop-color:#DC4227;stop-opacity:0.97\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath style=\"fill:url(#SVGID_00000144320157633982040090000008634866747267698359_);\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7\n c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8\n C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n\t y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\t.st1{opacity:0.7;fill:#FFFFFF;}\n\t.st2{opacity:0.8;fill:#FFFFFF;}\n\t.st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n\tc-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n\tc-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n\tc-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n\tc-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n\tc0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n\tc-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n\tc27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n\tz\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n\tc1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n\ts-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n\tc92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n\tc-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"shardingsphere_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\"\n y=\"0px\" viewBox=\"0 0 511.4 508\" style=\"enable-background:new 0 0 511.4 508;\" xml:space=\"preserve\" width='511.4' height='508'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n .st1{opacity:0.7;fill:#FFFFFF;}\n .st2{opacity:0.8;fill:#FFFFFF;}\n .st3{opacity:0.9;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M407.6,312.3c0.4-1.5,0.8-3.1,1.1-4.7C408.3,309.2,408,310.8,407.6,312.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M409.7,303.3c0.7-3.2,1.3-6.4,1.9-9.6C411,297,410.4,300.2,409.7,303.3z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.4,320.4c0.2-0.6,0.4-1.3,0.5-1.9L405.4,320.4z\"/\u003e\n\u003cpath class=\"st0\" d=\"M195.2,152.6c5.4,2.9,11,5.4,16.8,7.5C206.5,157.3,200.9,154.8,195.2,152.6z\"/\u003e\n\u003cpath class=\"st1\" d=\"M266.4,73.1c0,0,158.2,48.3,145.3,220.6c-0.6,3.3-1.2,6.5-1.9,9.6c-0.3,1.4-0.7,2.9-1,4.3\n c-0.4,1.6-0.7,3.2-1.1,4.7c-0.5,2.1-1.1,4.1-1.6,6.1c-0.2,0.6-0.3,1.3-0.5,1.9c-27.2,95.6-98.5,142.2-155.7,161.5\n c-19.6,6.6-39.9,10.4-60.5,11.5c-6.5,0.4-13,0.3-19.4-0.1c28.4,10.1,58.4,15.1,88.6,14.7c141.2-1.4,254.5-116.1,253.1-256.2\n c-0.4-43.3-12-85.7-33.6-123.2c1.6,7,3.1,14.1,4.5,21.6c24.6,125.7-52.1,190.9-52.1,190.9s50.1-53.7,10-197.7\n c-21.8-78.2-58.4-108.2-60.8-110.9C344.8,3.7,317.3-5.2,288.1,2.8C207.6,44.3,266.4,73.1,266.4,73.1z\"/\u003e\n\u003cpath class=\"st2\" d=\"M169.7,493.3c0.9,0,187.5,14.7,235.7-172.9c0.2-0.6,0.4-1.3,0.5-1.9c0.6-2,1.1-4.1,1.6-6.1\n c0.4-1.5,0.8-3.1,1.1-4.7c0.3-1.4,0.7-2.8,1-4.3c0.7-3.2,1.3-6.4,1.9-9.6C424.6,121.4,266.4,73.1,266.4,73.1s-58.8-28.8,21.7-70.2\n c-37,10-62.1,29.2-61.9,51c0.1,15.1,12.4,28.6,32.3,38.6c5.8,2.1,11.5,4.5,17.1,7.1c24.6,11.2,46.7,27.1,65.1,46.9\n c27.9,30.2,44.7,68.3,45.2,109.9c1,99.7-92.6,181.4-209.1,182.6c-47.9,0.5-92.2-12.7-127.9-35.4C79.2,444.9,121.4,476.1,169.7,493.3\n z\"/\u003e\n\u003cpath class=\"st0\" d=\"M405.9,318.5c0.6-2,1.1-4.1,1.6-6.1C407,314.4,406.5,316.4,405.9,318.5z\"/\u003e\n\u003cpath class=\"st0\" d=\"M408.7,307.6c0.3-1.4,0.7-2.8,1-4.3C409.4,304.8,409,306.2,408.7,307.6z\"/\u003e\n\u003cpath class=\"st0\" d=\"M133.6,204.1\"/\u003e\n\u003cpath class=\"st3\" d=\"M211.9,160.1c-5.8-2.1-11.4-4.6-16.8-7.5c-28.5-15.4-47.1-40.4-47.4-68.8c0-1.4,0-2.9,0.1-4.3\n c1.9-33.7,29.8-62.7,69.1-75.7C118.4,18.6,38.5,89.2,10.7,181.8c12.1-5.1,25.1-7.7,38.2-7.7c53.8,0,97.5,43.3,97.5,96.7\n s-43.6,96.7-97.5,96.7c-7.9,0-15.7-1-23.4-2.8c1.2,2.4,2.4,4.8,3.7,7.2c3,5.7,6.2,11.2,9.5,16.6c15.4,21.9,56.4,23.8,89.2,23.9\n c92.2,0.4,161.6-64.8,160.9-139.2C288.3,225.3,257.6,183.5,211.9,160.1z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003cpath class=\"st0\" d=\"M146.3,270.8c0-53.4-43.6-96.7-97.5-96.7c-13.1,0-26.1,2.6-38.2,7.7c-2.2,7.3-4.1,14.7-5.6,22.3\n c-11,54.3-3.8,110.7,20.4,160.5c7.7,1.9,15.5,2.8,23.4,2.8C102.7,367.5,146.3,324.2,146.3,270.8z\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageProvider", diff --git a/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json b/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json index f4b475cb807..e4ae6a51009 100644 --- a/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json +++ b/server/meshmodel/aperture-agent/2.34.0/v1.0.0/components/Agent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8773D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#EFEEED;}\n .st1{fill:#F8773D;}\n .st2{fill:#56AE89;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M57.1,32.7c-0.9-1.3-0.8-3.1,0.4-4.3c0.8-0.8,1.8-1.5,2.8-2.1s1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12\n c-7.5-0.7-9.5-1.6-10.4-4.4c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7C25,6,22.9,6.8,15.7,7.5C10.2,8.1,0,9,0,19.6v3.8\n c0,1.2,0.6,2.3,1.6,2.9s2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4S0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3S57.9,33.7,57.1,32.7L57.1,32.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st2\" d=\"M18.1,27.7c-0.5,0-0.9,0.1-1.3,0.3c0.3,0.3,0.4,0.7,0.3,1.2c-0.1,0.4-0.5,0.8-0.9,0.8c-0.4,0-0.8-0.1-1-0.4\n c-0.3,0.6-0.4,1.3-0.2,2.1c0.3,1.4,1.5,2.4,2.8,2.5c2,0.2,3.6-1.3,3.6-3.3C21.4,29.2,19.9,27.7,18.1,27.7 M19.6,33.4\n c-0.4,0-0.8-0.3-0.8-0.8s0.3-0.8,0.8-0.8s0.8,0.4,0.8,0.8S20,33.4,19.6,33.4\"/\u003e\n \u003cpath class=\"st2\" d=\"M40.9,29.6c-0.3,0.6-0.4,1.4-0.2,2.1c0.3,1.2,1.2,2.2,2.5,2.4c2.3,0.5,4.3-1.4,3.9-3.7\n c-0.2-1.4-1.4-2.6-2.9-2.7c-0.6-0.1-1.2,0-1.7,0.3c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.5,0.7-0.9,0.8C41.6,30,41.2,29.9,40.9,29.6\n M44.6,32.7c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8s-0.3,0.8-0.8,0.8S44.6,33.1,44.6,32.7\"/\u003e\n \u003cpath class=\"st2\" d=\"M44.3,22.7c-6,0-4,4.3-13.4,5.3c-8.1-0.9-7.7-4.3-11.4-5.2c-5-1.1-9.9,2.5-10.2,7.5s3.5,8.9,8.3,8.9\n c6,0,4-4.3,13.3-5.3c8.2,0.9,7.7,4.3,11.4,5.2c5,1.1,9.9-2.5,10.2-7.5C52.9,26.7,49.1,22.7,44.3,22.7 M18.1,35.8\n c-2.7,0-4.9-2.3-4.9-5c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S20.8,35.8,18.1,35.8 M43.9,35.8c-2.7,0-5-2.3-4.9-5\n c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S46.6,35.8,43.9,35.8\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M56.6,24.6c-1.1,0-2.1-0.9-2.1-2v-3c0-3.3-2-4-9-4.7c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4\n c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-3c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3\n l0,0c0.8,0,1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2c5.7,0.5,12.7,1.2,12.7,8.7v3C58.6,23.6,57.7,24.6,56.6,24.6z\"/\u003e\n \u003cpath class=\"st1\" d=\"M31,58.6c-0.8,0-1.6-0.5-1.9-1.3c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2\n s2,0.9,2,2v3c0,3.3,2,4,9,4.7c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3c0-1.1,0.9-2,2.1-2\n s2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2C32.6,58.1,31.8,58.6,31,58.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\" width='70' height='62'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n \u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n c1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n \u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n c-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n c1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n C44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n \u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n c1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n c1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n c0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n c-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n c5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Agent", diff --git a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json index 159c20e642a..466972be60e 100644 --- a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json +++ b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Controller.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8773D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#EFEEED;}\n .st1{fill:#F8773D;}\n .st2{fill:#56AE89;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M57.1,32.7c-0.9-1.3-0.8-3.1,0.4-4.3c0.8-0.8,1.8-1.5,2.8-2.1s1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12\n c-7.5-0.7-9.5-1.6-10.4-4.4c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7C25,6,22.9,6.8,15.7,7.5C10.2,8.1,0,9,0,19.6v3.8\n c0,1.2,0.6,2.3,1.6,2.9s2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4S0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3S57.9,33.7,57.1,32.7L57.1,32.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st2\" d=\"M18.1,27.7c-0.5,0-0.9,0.1-1.3,0.3c0.3,0.3,0.4,0.7,0.3,1.2c-0.1,0.4-0.5,0.8-0.9,0.8c-0.4,0-0.8-0.1-1-0.4\n c-0.3,0.6-0.4,1.3-0.2,2.1c0.3,1.4,1.5,2.4,2.8,2.5c2,0.2,3.6-1.3,3.6-3.3C21.4,29.2,19.9,27.7,18.1,27.7 M19.6,33.4\n c-0.4,0-0.8-0.3-0.8-0.8s0.3-0.8,0.8-0.8s0.8,0.4,0.8,0.8S20,33.4,19.6,33.4\"/\u003e\n \u003cpath class=\"st2\" d=\"M40.9,29.6c-0.3,0.6-0.4,1.4-0.2,2.1c0.3,1.2,1.2,2.2,2.5,2.4c2.3,0.5,4.3-1.4,3.9-3.7\n c-0.2-1.4-1.4-2.6-2.9-2.7c-0.6-0.1-1.2,0-1.7,0.3c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.5,0.7-0.9,0.8C41.6,30,41.2,29.9,40.9,29.6\n M44.6,32.7c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8s-0.3,0.8-0.8,0.8S44.6,33.1,44.6,32.7\"/\u003e\n \u003cpath class=\"st2\" d=\"M44.3,22.7c-6,0-4,4.3-13.4,5.3c-8.1-0.9-7.7-4.3-11.4-5.2c-5-1.1-9.9,2.5-10.2,7.5s3.5,8.9,8.3,8.9\n c6,0,4-4.3,13.3-5.3c8.2,0.9,7.7,4.3,11.4,5.2c5,1.1,9.9-2.5,10.2-7.5C52.9,26.7,49.1,22.7,44.3,22.7 M18.1,35.8\n c-2.7,0-4.9-2.3-4.9-5c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S20.8,35.8,18.1,35.8 M43.9,35.8c-2.7,0-5-2.3-4.9-5\n c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S46.6,35.8,43.9,35.8\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M56.6,24.6c-1.1,0-2.1-0.9-2.1-2v-3c0-3.3-2-4-9-4.7c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4\n c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-3c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3\n l0,0c0.8,0,1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2c5.7,0.5,12.7,1.2,12.7,8.7v3C58.6,23.6,57.7,24.6,56.6,24.6z\"/\u003e\n \u003cpath class=\"st1\" d=\"M31,58.6c-0.8,0-1.6-0.5-1.9-1.3c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2\n s2,0.9,2,2v3c0,3.3,2,4,9,4.7c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3c0-1.1,0.9-2,2.1-2\n s2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2C32.6,58.1,31.8,58.6,31,58.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\" width='70' height='62'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Controller", diff --git a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json index 02350ffe887..58b94c87047 100644 --- a/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json +++ b/server/meshmodel/aperture-controller/2.34.0/v1.0.0/components/Policy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8773D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#EFEEED;}\n .st1{fill:#F8773D;}\n .st2{fill:#56AE89;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M57.1,32.7c-0.9-1.3-0.8-3.1,0.4-4.3c0.8-0.8,1.8-1.5,2.8-2.1s1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12\n c-7.5-0.7-9.5-1.6-10.4-4.4c-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7C25,6,22.9,6.8,15.7,7.5C10.2,8.1,0,9,0,19.6v3.8\n c0,1.2,0.6,2.3,1.6,2.9s2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4S0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n c7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n c0-1.3-0.7-2.5-1.9-3S57.9,33.7,57.1,32.7L57.1,32.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n C64.3,30,67.9,28.2,70,25.6z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st2\" d=\"M18.1,27.7c-0.5,0-0.9,0.1-1.3,0.3c0.3,0.3,0.4,0.7,0.3,1.2c-0.1,0.4-0.5,0.8-0.9,0.8c-0.4,0-0.8-0.1-1-0.4\n c-0.3,0.6-0.4,1.3-0.2,2.1c0.3,1.4,1.5,2.4,2.8,2.5c2,0.2,3.6-1.3,3.6-3.3C21.4,29.2,19.9,27.7,18.1,27.7 M19.6,33.4\n c-0.4,0-0.8-0.3-0.8-0.8s0.3-0.8,0.8-0.8s0.8,0.4,0.8,0.8S20,33.4,19.6,33.4\"/\u003e\n \u003cpath class=\"st2\" d=\"M40.9,29.6c-0.3,0.6-0.4,1.4-0.2,2.1c0.3,1.2,1.2,2.2,2.5,2.4c2.3,0.5,4.3-1.4,3.9-3.7\n c-0.2-1.4-1.4-2.6-2.9-2.7c-0.6-0.1-1.2,0-1.7,0.3c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.5,0.7-0.9,0.8C41.6,30,41.2,29.9,40.9,29.6\n M44.6,32.7c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8s-0.3,0.8-0.8,0.8S44.6,33.1,44.6,32.7\"/\u003e\n \u003cpath class=\"st2\" d=\"M44.3,22.7c-6,0-4,4.3-13.4,5.3c-8.1-0.9-7.7-4.3-11.4-5.2c-5-1.1-9.9,2.5-10.2,7.5s3.5,8.9,8.3,8.9\n c6,0,4-4.3,13.3-5.3c8.2,0.9,7.7,4.3,11.4,5.2c5,1.1,9.9-2.5,10.2-7.5C52.9,26.7,49.1,22.7,44.3,22.7 M18.1,35.8\n c-2.7,0-4.9-2.3-4.9-5c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S20.8,35.8,18.1,35.8 M43.9,35.8c-2.7,0-5-2.3-4.9-5\n c0.1-2.5,2.2-4.7,4.7-4.7c2.8-0.1,5,2.1,5,4.9S46.6,35.8,43.9,35.8\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M56.6,24.6c-1.1,0-2.1-0.9-2.1-2v-3c0-3.3-2-4-9-4.7c-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4\n c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-3c0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3\n l0,0c0.8,0,1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2c5.7,0.5,12.7,1.2,12.7,8.7v3C58.6,23.6,57.7,24.6,56.6,24.6z\"/\u003e\n \u003cpath class=\"st1\" d=\"M31,58.6c-0.8,0-1.6-0.5-1.9-1.3c-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2\n s2,0.9,2,2v3c0,3.3,2,4,9,4.7c5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3c0-1.1,0.9-2,2.1-2\n s2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2C32.6,58.1,31.8,58.6,31,58.6z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 70 62\" style=\"enable-background:new 0 0 70 62;\" xml:space=\"preserve\" width='70' height='62'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M70,25.6c-4-0.2-8.6,1.8-11.1,4.9l0,0l0,0l0,0c1,2.6,3.7,4,6.4,3.4c-0.8-1.9-2.5-3.2-4.4-3.5\n\t\tC64.3,30,67.9,28.2,70,25.6z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st0\" d=\"M19.6,31.8c-0.5,0-0.8,0.3-0.8,0.8s0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C20.4,32.2,20.1,31.8,19.6,31.8z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M43.9,35.8c2.7,0,4.8-2,4.8-4.8s-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7C38.9,33.5,41.2,35.8,43.9,35.8z\n\t\t\t M40.9,29.6c0.3,0.3,0.7,0.4,1,0.3c0.4-0.1,0.8-0.4,0.9-0.8c0.1-0.4,0-0.8-0.3-1.1c0.5-0.3,1.1-0.4,1.7-0.3\n\t\t\tc1.5,0.1,2.7,1.3,2.9,2.7c0.4,2.3-1.6,4.2-3.9,3.7c-1.3-0.2-2.2-1.2-2.5-2.4C40.5,31,40.6,30.2,40.9,29.6z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M22.9,31c0-2.8-2.2-5-5-4.9c-2.5,0-4.6,2.2-4.7,4.7c0,2.7,2.2,5,4.9,5C20.8,35.8,22.9,33.8,22.9,31z M15,31.7\n\t\t\tc-0.2-0.8-0.1-1.5,0.2-2.1c0.2,0.3,0.6,0.4,1,0.4c0.4,0,0.8-0.4,0.9-0.8c0.1-0.5,0-0.9-0.3-1.2c0.4-0.2,0.8-0.3,1.3-0.3\n\t\t\tc1.8,0,3.3,1.5,3.3,3.2c0,2-1.6,3.5-3.6,3.3C16.5,34.1,15.3,33.1,15,31.7z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M45.4,33.5c0.5,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.8,0.4-0.8,0.8\n\t\t\tC44.6,33.1,44.9,33.5,45.4,33.5z\"/\u003e\n\t\t\u003cpath class=\"st0\" d=\"M60.3,26.3c1-0.6,1.7-1.7,1.7-2.9v-3.8c0-10.5-10.2-11.5-15.7-12C38.8,6.9,36.8,6,35.9,3.2\n\t\t\tc-0.2-0.5-0.4-1-0.8-1.4c-3.4-3.2-7.8-1.6-9.1,1.7c-1,2.5-3.1,3.3-10.3,4C10.2,8.1,0,9,0,19.6v3.8c0,1.2,0.6,2.3,1.6,2.9\n\t\t\tc1,0.6,2,1.3,2.8,2.1c1.2,1.1,1.3,3,0.4,4.3c-0.8,1-1.8,1.9-2.9,2.4C0.8,35.6,0,36.7,0,38v4.3c0,10.5,10.2,11.5,15.7,12\n\t\t\tc7.5,0.7,9.5,1.6,10.4,4.4c0.2,0.5,0.4,1,0.8,1.4c3.3,3.2,7.8,1.6,9.1-1.7c1-2.5,3.1-3.4,10.3-4.1c5.5-0.5,15.7-1.5,15.7-12V38\n\t\t\tc0-1.3-0.7-2.5-1.9-3c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1.3-0.8-3.1,0.4-4.3C58.3,27.6,59.3,26.9,60.3,26.3z M56.6,37.4\n\t\t\tc1.2,0,2.1,0.9,2.1,2v3c0,7.5-7,8.2-12.7,8.7c-6.7,0.7-11.3,1.4-13.1,6.2c-0.3,0.8-1.1,1.3-1.9,1.3s-1.6-0.5-1.9-1.3\n\t\t\tc-1.8-4.8-6.3-5.5-13.1-6.2c-5.6-0.6-12.7-1.2-12.7-8.7v-3c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2v3c0,3.3,2,4,9,4.7\n\t\t\tc5,0.5,11,1.1,14.6,5.4c3.5-4.4,9.6-4.9,14.6-5.4c6.9-0.7,9-1.4,9-4.7v-3C54.5,38.3,55.4,37.4,56.6,37.4z M9.3,30.3\n\t\t\tc0.3-5,5.2-8.6,10.2-7.5c3.7,0.9,3.3,4.3,11.4,5.2c9.4-1,7.4-5.3,13.4-5.3c4.8,0,8.6,4,8.2,8.9c-0.3,5-5.2,8.6-10.2,7.5\n\t\t\tc-3.7-0.9-3.2-4.3-11.4-5.2c-9.3,1-7.3,5.3-13.3,5.3C12.8,39.2,9,35.3,9.3,30.3z M54.5,22.6v-3c0-3.3-2-4-9-4.7\n\t\t\tc-5-0.5-11-1.1-14.6-5.4c-3.5,4.4-9.6,4.9-14.6,5.4c-7,0.7-9,1.4-9,4.7v3c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2v-3\n\t\t\tc0-7.5,7-8.2,12.7-8.7c6.7-0.6,11.3-1.4,13.1-6.2c0.3-0.8,1.1-1.3,1.9-1.3s1.6,0.5,1.9,1.3c1.8,4.8,6.3,5.5,13.1,6.2\n\t\t\tc5.7,0.5,12.7,1.2,12.7,8.7v3c-0.1,1-1,2-2.1,2C55.5,24.6,54.5,23.7,54.5,22.6z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Policy", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json index 50d6d103a7f..dcc5de70f0b 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixClusterConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixClusterConfig", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json index b889808eb82..351d5caf50e 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixConsumer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixConsumer", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json index ba65fa35863..48be4e0a8eb 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixGlobalRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixGlobalRule", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json index 4e6a316d662..f0864dcf68b 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixPluginConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixPluginConfig", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json index db368a5c35d..1d7d6305699 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixRoute", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json index 26a6b58751e..96ece05edcc 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixTls.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{opacity:0.8;fill:#FFFFFF;}\n .st1{fill:#FFFFFF;}\n .st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixTls", diff --git a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json index d2d8ab4faee..fa9032bc0c0 100644 --- a/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json +++ b/server/meshmodel/apisix-ingress-controller/0.14.0/v1.0.0/components/ApisixUpstream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F8423F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"185\" height=\"156\" viewBox=\"0 0 185 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 155.5L94 0L185 155.5H140L94 83L42.5 155.5H0Z\" fill=\"#F8423F\"/\u003e\n\u003cpath d=\"M94 82.5L42.5 155H0L76.5 57L94 82.5Z\" fill=\"url(#paint0_linear)\"/\u003e\n\u003cpath d=\"M140 155.5H185L94 0L140 155.5Z\" fill=\"url(#paint1_linear)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear\" x1=\"222.5\" y1=\"50\" x2=\"85\" y2=\"223.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.536111\" stop-color=\"#FC0A04\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#CF0500\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear\" x1=\"139.5\" y1=\"1.50861e-06\" x2=\"226\" y2=\"136\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop offset=\"0.473466\" stop-color=\"#E2423E\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E2423E\" stop-opacity=\"0.77\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 185 156\" style=\"enable-background:new 0 0 185 156;\" xml:space=\"preserve\" width='185' height='156'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.6;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M0,155.5L94,0l91,155.5h-45L94,83l-51.5,72.5H0z\"/\u003e\n\u003cpath class=\"st1\" d=\"M94,82.5L42.5,155H0l76.5-98L94,82.5z\"/\u003e\n\u003cpath class=\"st2\" d=\"M140,155.5h45L94,0L140,155.5z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ApisixUpstream", diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json index cfc444ffdb0..19b02655216 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixClusterConfig.json @@ -45,16 +45,18 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27233_10470)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27233_10470)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27233_10470)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27233_10470\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27233_10470\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27233_10470\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" }, diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json index 8d887a3ea1e..373a61e6a7d 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixConsumer.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json index b68ba3a8206..c5843f0e599 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixGlobalRule.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json index 6d6efd798c6..2f866423664 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixPluginConfig.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json index 087f37aeb84..f8a25f77940 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" }, "component": { "kind": "ApisixRoute", diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json index 81e80a45f9a..66833595661 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixTls.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json index 5ccacea48eb..e7dadc890c1 100644 --- a/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json +++ b/server/meshmodel/apisix/3.2.2/v1.0.0/components/ApisixUpstream.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10652)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10652)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10652\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E62129\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10652\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#A92F33\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10652\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#E62129\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E8443F\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"500\" height=\"500\" viewBox=\"0 0 500 500\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M129.636 433.668L248.069 261.869L210.742 203.435L101.642 332.912C65.4085 375.927 59.575 386.644 29.3203 437.093L129.673 433.668H129.636Z\" fill=\"url(#paint0_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M423.663 437.093L471.67 436.911L255.911 62L360.091 437.093H423.7H423.663ZM255.874 62L201.305 152.183L212.276 134.067L255.874 62.0363V62Z\" fill=\"url(#paint1_linear_27198_10658)\"/\u003e\n\u003cpath d=\"M210.707 203.435L360.051 437.093L255.872 62L212.312 134.03L29.2852 437.093L210.707 203.435Z\" fill=\"url(#paint2_linear_27198_10658)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27198_10658\" x1=\"203.423\" y1=\"210.642\" x2=\"79.6982\" y2=\"593.367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27198_10658\" x1=\"272.934\" y1=\"100.165\" x2=\"400.081\" y2=\"398.957\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27198_10658\" x1=\"127.832\" y1=\"330.488\" x2=\"261.533\" y2=\"168.633\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json b/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json index dc70343d086..fcf96bc8606 100644 --- a/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json +++ b/server/meshmodel/application-crds/0.8.3/v1.0.0/components/Application.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Application", diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json index 8e5eb6202e4..9466a012b4c 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/BackendGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json index e8bbab45144..d0c3111bbeb 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/GatewayRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json index ba994628566..8bf962b7757 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/Mesh.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json index 399afe93172..bea5aa63dae 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json index 39621c798de..0c0931a81b3 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json index baf74086bdb..141c4cf7eff 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualRouter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json index 0e4cf8c204e..257ef7659c9 100644 --- a/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json +++ b/server/meshmodel/appmesh-controller/1.13.0/v1.0.0/components/VirtualService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 122 122\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.667 116.007C4.287 101.462-8.551 65.04 5.992 34.657A60.98 60.98 0 0 1 87.333 5.98c30.38 14.544 43.218 50.966 28.675 81.35-14.544 30.383-50.962 43.222-81.341 28.677Z\" fill=\"#F49322\"/\u003e\u003cpath d=\"m29.488 41.005-1.92-3.24 11.328-5.76 1.92 3.24-11.328 5.76Zm18.048-9.18-1.92-3.24 10.176-5.22 1.92 3.24-10.176 5.22Zm10.368 26.1-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-17.088-8.46-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm24.576 8.1-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm17.28-7.92-1.728-3.24 10.368-4.68 1.728 3.24-10.368 4.68Zm-25.92 50.58-11.52-5.76 1.728-3.24 11.52 5.76-1.728 3.24Zm-17.28-8.28-10.176-5.04 1.728-3.24 10.176 5.04-1.728 3.24Zm-10.368-46.26h-3.84v13.86h3.84v-13.86Zm33.792 35.82h-3.84v14.22h3.84v-14.22Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M27.184 47.125a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm0 46.44a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.192.18-.384.54-.384.9s.192.72.384.9c.576.54 1.344.54 1.92 0 .192-.18.384-.54.384-.9s-.192-.72-.384-.9a1.52 1.52 0 0 0-.96-.36Zm33.792 22.32a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.3c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152 1.08-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.18-.768-.36-.96-.36Zm33.216 30.42a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 .96.9 1.536 2.16 1.536 3.42 0 1.26-.576 2.52-1.536 3.42-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm0-34.2a5.425 5.425 0 0 1-3.648-1.44c-2.112-1.98-2.112-5.04 0-6.84 1.92-1.8 5.376-1.8 7.296 0 2.112 1.98 2.112 5.04 0 6.84-.96.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8a1.52 1.52 0 0 0-.96-.36Zm-33.216-12.24a5.425 5.425 0 0 1-3.648-1.44c-.96-.9-1.536-2.16-1.536-3.42 0-1.26.576-2.52 1.536-3.42 2.112-1.98 5.376-1.98 7.296 0 2.112 1.98 2.112 5.04 0 6.84-1.152.9-2.304 1.44-3.648 1.44Zm0-6.12c-.384 0-.768.18-.96.36-.576.54-.576 1.26 0 1.8s1.344.54 1.92 0c.576-.54.576-1.26 0-1.8-.384-.36-.768-.36-.96-.36Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.104 63.145h-3.84v15.48h3.84v-15.48Zm66.816-17.46h-3.84v13.86h3.84v-13.86Zm0 17.46h-3.84v15.48h3.84v-15.48Zm-14.784-28.08 1.92-3.24L94 37.405l-1.92 3.24-10.944-5.58Zm-18.432-9.36 1.92-3.24 11.712 5.94-1.92 3.24-11.712-5.94Zm.192 36h-3.84v14.22h3.84v-14.22Zm.576 35.46 11.136-5.4 1.728 3.24-11.136 5.4-1.728-3.24Zm16.704-8.1 10.944-5.4 1.728 3.24-10.944 5.4-1.728-3.24Z\" fill=\"#fff\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath d=\"M3.095 8.319 2.3 7.094l4.682-2.178.794 1.225L3.095 8.32Zm7.46-3.47L9.76 3.622l4.205-1.973.794 1.225-4.206 1.973Zm4.285 9.866-4.207-1.905.715-1.225 4.206 1.906-.715 1.224Zm-7.063-3.198L3.57 9.612l.714-1.225 4.206 1.905-.714 1.225Zm10.157 3.063-.714-1.225 4.285-1.77.714 1.225-4.285 1.77Zm7.142-2.995-.714-1.225 4.285-1.769.714 1.225-4.285 1.77ZM14.363 30.707l-4.761-2.178.714-1.224 4.761 2.177-.714 1.225Zm-7.142-3.13-4.206-1.905.715-1.226 4.205 1.906-.714 1.225ZM2.936 10.088H1.35v5.24h1.587v-5.24ZM16.903 23.63h-1.587v5.376h1.587V23.63Z\"/\u003e\u003cpath d=\"M2.143 10.633a2.36 2.36 0 0 1-1.508-.545C.238 9.748 0 9.272 0 8.795c0-.476.238-.952.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.273.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.662.662 0 0 0-.396-.136Zm0 17.556a2.36 2.36 0 0 1-1.508-.544C.238 24.991 0 24.515 0 24.038c0-.476.238-.953.635-1.293.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136.484.484 0 0 0-.159.34c0 .136.08.272.159.34a.59.59 0 0 0 .793 0 .484.484 0 0 0 .16-.34.484.484 0 0 0-.16-.34.663.663 0 0 0-.396-.136ZM16.11 32a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.34-.952.544-1.508.544Zm0-2.382a.662.662 0 0 0-.398.137c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm0-12.929a2.36 2.36 0 0 1-1.509-.544c-.396-.34-.635-.817-.635-1.293 0-.477.239-.953.635-1.293.873-.749 2.222-.749 3.016 0 .873.748.873 1.905 0 2.586-.476.408-.952.544-1.508.544Zm0-2.314a.662.662 0 0 0-.398.136c-.238.205-.238.477 0 .681a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.069-.317-.137-.397-.137Zm13.728 11.5a2.36 2.36 0 0 1-1.508-.544c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .397.34.635.817.635 1.293 0 .477-.238.953-.635 1.293a2.36 2.36 0 0 1-1.507.544Zm0-2.313a.662.662 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.663.663 0 0 0-.396-.136Zm0-12.929a2.36 2.36 0 0 1-1.508-.545c-.873-.748-.873-1.905 0-2.586.793-.68 2.222-.68 3.015 0 .873.749.873 1.906 0 2.586a2.36 2.36 0 0 1-1.507.545Zm0-2.314a.663.663 0 0 0-.397.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .793 0c.238-.204.238-.476 0-.68a.662.662 0 0 0-.396-.136ZM16.11 3.692a2.36 2.36 0 0 1-1.509-.545c-.396-.34-.635-.816-.635-1.293 0-.476.239-.952.635-1.293.873-.748 2.222-.748 3.016 0 .873.749.873 1.906 0 2.586-.476.34-.952.545-1.508.545Zm0-2.314a.662.662 0 0 0-.398.136c-.238.204-.238.476 0 .68a.59.59 0 0 0 .794 0c.238-.204.238-.476 0-.68-.159-.136-.317-.136-.397-.136Z\"/\u003e\u003cpath d=\"M2.936 16.689H1.35v5.852h1.587V16.69Zm27.616-6.601h-1.587v5.24h1.587v-5.24Zm0 6.601h-1.587v5.852h1.587V16.69Zm-6.11-10.616.793-1.225 4.523 2.11-.793 1.225-4.523-2.11Zm-7.619-3.538.794-1.225 4.84 2.245-.793 1.225-4.84-2.245Zm.08 13.61h-1.587v5.376h1.587v-5.376Zm.237 13.405 4.603-2.041.715 1.225-4.603 2.041-.714-1.225Zm6.905-3.062 4.523-2.041.714 1.225-4.523 2.04-.714-1.224Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json index 47b97c5ebf8..d4ea91c218a 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/AppProject.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#fe733e", - "secondaryColor": "#FFB887", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json index ed7337d63f7..9f6f922465a 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/Application.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#fe733e", - "secondaryColor": "#FFB887", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json index 618d58ebfdc..9488ad67ac4 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ApplicationSet.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#fe733e", - "secondaryColor": "#FFB887", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json index d223648d68f..3bace8a3589 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCD.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#fe733e", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\" width='522' height='673'\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ArgoCD", diff --git a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json index 95bb0a2bf48..97f5e94f3ac 100644 --- a/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json +++ b/server/meshmodel/argocd-operator/0.5.0/v1.0.0/components/ArgoCDExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#fe733e", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" fill=\"none\" viewBox=\"0 0 581 747\"\u003e\n \u003cpath id=\"a\" fill=\"#fff\" d=\"M336.76 437.61c0 28.31-18.83 43.36-49.29 43.36-30.45 0-47.2-17.84-47.2-43.36 0 0 16.75 23.65 47.2 23.65 30.46 0 49.3-23.65 49.3-23.65Z\"/\u003e\n \u003cpath fill=\"#E2F5FC\" d=\"M290.5 547.98c148.47 0 268.84-120.45 268.84-269.04 0-148.58-120.37-269.03-268.84-269.03-148.47 0-268.84 120.45-268.84 269.03 0 148.59 120.37 269.04 268.84 269.04Z\"/\u003e\n \u003cpath fill=\"#CDECF6\" d=\"M290.5 504.04c121.36 0 219.74-98.45 219.74-219.9S411.86 64.24 290.5 64.24c-121.36 0-219.74 98.45-219.74 219.9s98.38 219.9 219.74 219.9Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M208.31 91.51a12.98 12.98 0 1 0 0-25.96 12.98 12.98 0 0 0 0 25.96Zm-96.57 325.82a4.5 4.5 0 1 0 7.08-5.54c-87.8-112.21-37.15-257.65 62.5-314.74a4.5 4.5 0 0 0-4.47-7.8C73.23 148.6 20.03 300.12 111.74 417.33Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M19.26 225.54a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7Zm555.07-105.88a3.5 3.5 0 1 0-7 0h7Zm-7 105.38a3.5 3.5 0 1 0 7 0h-7ZM289.79 555.97c153.28 0 277.54-124.35 277.54-277.73h-7c0 149.52-121.13 270.73-270.54 270.73v7Zm277.54-277.73C567.33 124.84 443.07.5 289.79.5v7c149.41 0 270.54 121.21 270.54 270.74h7ZM289.79.5C136.51.5 12.26 124.85 12.26 278.24h7C19.26 128.7 140.38 7.5 289.79 7.5v-7ZM12.26 278.24c0 153.38 124.25 277.73 277.53 277.73v-7c-149.4 0-270.53-121.2-270.53-270.73h-7Zm0-52.7v105.38h7V225.54h-7Zm548.07-.5v105.38h7V225.04h-7Z\"/\u003e\n \u003cpath fill=\"#B5D2F3\" d=\"M21.66 225.73a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Zm559.34 0a10.84 10.84 0 1 0-21.66 0v106.43a10.84 10.84 0 1 0 21.66 0V225.73Z\"/\u003e\n \u003cpath fill=\"#FE733E\" d=\"M171.17 687.76c12.53-5.1 9.98-10.2 9.98-12.74l-6.1-92.55-5.37-46.3-8.12-289.07c0-68.6 50.73-132.72 127.3-132.72s130.76 61.71 130.88 132.77c-2.2 137.24-5.9 189.47-11.07 288.02-.63 13.47-2.38 33.86-2.96 46.32-2.88 61.66-6.14 91.87-6.14 93.53 0 2.55-2.54 7.64 9.98 12.74 12.52 5.1 41.46 11.71 41.46 13.33 0 1.6-48.89 0-48.89 0-28.02 0-28.02-20.98-28.02-26.07 0-5.1-7.64-92.6-7.64-92.6l-2.55 112.99c0 5.1 2.55 12.74 20.38 17.84 0 0 38.91 5.89 38.91 8.01 0 2.13-46.55 0-46.55 0-35.45 0-35.45-20.75-35.45-20.75l-7.64-92.6S331 700.5 331 713.24c0 9.99 1.73 17.63 29.54 22.73 13.43 3.73 40.54 8.35 40.54 10.2 0 1.85-61.86 0-61.86 0-33.11-2.55-36.24-25.5-36.24-25.5l-12.55-46.14-12.5 46.15s-5.09 22.94-38.2 25.49c0 0-56.17 1.85-56.17 0s22.5-5.99 36.81-10.2c19.36-5.69 29.55-12.74 29.55-22.73 0-12.74-2.55-105.35-2.55-105.35l-7.64 92.6s0 22.74-35.45 22.74c0 0-50.5.15-50.5-1.98 0-2.12 42.64-8 42.64-8 17.83-5.1 20.38-12.75 20.38-17.85l-2.55-113s-7.64 87.5-7.64 92.6c0 5.1 0 28.05-28.02 28.05 0 0-47.13-2.33-47.13-3.95 0-1.6 27.18-6.25 39.7-11.35Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M169.68 536.16s-5.23 12.8-17.05 19.7c-11.81 6.9-25.51 9.14-38.4 10.84 0 0 17.72 8.87 39.39 6.9 13.58-1.1 19.28 2.36 21.42 8.87l-5.36-46.3Zm238.99-.99s7.63 12.8 19.45 19.7c11.82 6.9 25.51 9.15 38.4 10.85 0 0-17.72 8.87-39.38 6.9-13.58-1.1-19.29 2.35-21.43 8.87l2.96-46.32Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"m408.81 533 .99-16.02c-62.56 29.54-120.7 26.43-120.7 26.43s-58.49 2.45-119.92-26.57l.4 15.57s43.82 26.94 119.52 26.94c75.7 0 119.71-26.35 119.71-26.35Z\" opacity=\".3\"/\u003e\n \u003cpath fill=\"#FEA777\" d=\"M238.78 194.25a17.84 17.84 0 1 0-.01-35.67 17.84 17.84 0 0 0 .01 35.67Z\" opacity=\".5\"/\u003e\n \u003cpath fill=\"#FE6B3C\" d=\"M419.5 249.06s1.88-22.34-7.88-48.94c-26.77-73.01-92.56-87.71-128.02-85.64 0 0 50.28 23.76 52.61 99.8 1.06 33.72 1.06 34.78 1.06 34.78h82.23Z\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cuse xlink:href=\"#a\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#070909\" d=\"M336.76 437.61c0 28.31-11.39 72.92-49.29 72.92s-47.2-47.4-47.2-72.92c0 0 0 43.36 47.2 43.36 51.62 0 49.3-43.36 49.3-43.36Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M197.93 394.25a77.82 77.82 0 0 0 77.8-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.8 77.85c0 43 34.84 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M197.73 378.32a60.94 60.94 0 0 0 60.92-60.96 60.94 60.94 0 0 0-60.92-60.97 60.94 60.94 0 0 0-60.92 60.97 60.94 60.94 0 0 0 60.92 60.96Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M195.96 325.27a18.72 18.72 0 1 0-.01-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n \u003cpath fill=\"#FE6446\" d=\"M381.1 394.25a77.82 77.82 0 0 0 77.79-77.85c0-43-34.83-77.85-77.8-77.85a77.82 77.82 0 0 0-77.79 77.85c0 43 34.83 77.85 77.8 77.85Z\"/\u003e\n \u003cpath fill=\"#fff\" d=\"M378 378.21a60.94 60.94 0 0 0 60.93-60.96A60.94 60.94 0 0 0 378 256.29a60.94 60.94 0 0 0-60.92 60.96A60.94 60.94 0 0 0 378 378.21Z\"/\u003e\n \u003cpath fill=\"#090B0B\" d=\"M379.13 325.27a18.72 18.72 0 1 0-.02-37.44 18.72 18.72 0 0 0 .01 37.44Z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\"\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 522 673\" width='522' height='673'\u003e\n \u003cpath fill=\"#fff\" d=\"M198 66.5a11.8 11.8 0 1 1-23.7 0 11.8 11.8 0 0 1 23.6 0Zm-94.2 309.2a4.1 4.1 0 0 1-5.7-.7C14.5 268.3 63 130.3 157.4 76.3a4.1 4.1 0 1 1 4 7c-90.7 52-136.9 184.5-56.9 286.7a4 4 0 0 1-.7 5.7Zm72.2-81.3a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Zm164.5 0a16.8 16.8 0 1 0 0-33.6 16.8 16.8 0 0 0 0 33.6Z\"/\u003e\n \u003cpath fill=\"#fff\" fill-rule=\"evenodd\" d=\"M15.3 308.6a9.7 9.7 0 0 1-15.3-8V205a9.7 9.7 0 0 1 15-8 252.3 252.3 0 0 1 492.2-.3 9.7 9.7 0 0 1 14.7 8.4v95.5a9.7 9.7 0 0 1-15 8.2 252.7 252.7 0 0 1-139.7 172.3l-.1 1.7a57 57 0 0 0 17.4 17.7 91 91 0 0 0 34.5 9.8s-15.9 8-35.3 6.2c-12.2-1-17.4 2-19.3 8l1.3-19.7-1.3 19.6c-2 44.7-4.4 71-5.2 80.2l-.3 3.8v1c-.4 2.5-.8 6.4 9 10.4 5.5 2.3 14.7 4.9 22.6 7.1 8 2.3 14.6 4.2 14.6 4.9 0 1.4-43.9 0-43.9 0-25.2 0-25.2-18.8-25.2-23.4 0-4.6-6.8-83.2-6.8-83.2l-2.3 101.5c0 4.6 2.3 11.4 18.3 16 0 0 35 5.3 35 7.2 0 2-41.9 0-41.9 0-31.8 0-31.8-18.6-31.8-18.6l-6.9-83.2s-2.3 83.2-2.3 94.6c0 9 1.6 15.8 26.6 20.4 4.8 1.4 11.6 2.8 18 4.2 9.7 2 18.4 4 18.4 5 0 1.6-55.6 0-55.6 0-29.7-2.3-32.5-23-32.5-23L260.9 608l-11.2 41.4s-4.6 20.6-34.4 22.9c0 0-50.4 1.6-50.4 0 0-1 7.3-2.8 16-4.8 5.7-1.4 12-2.9 17-4.4 17.4-5.1 26.6-11.4 26.6-20.4 0-11.4-2.3-94.6-2.3-94.6l-6.9 83.2s0 20.4-31.8 20.4c0 0-45.4.1-45.4-1.8 0-2 38.3-7.2 38.3-7.2 16-4.6 18.3-11.4 18.3-16l-2.2-101.5s-7 78.6-7 83.2c0 4.6 0 25.2-25 25.2 0 0-42.4-2.1-42.4-3.6 0-.7 5.3-2 12.1-3.6 7.8-1.8 17.6-4.1 23.6-6.6 9.7-4 9.3-8 9-10.4v-1l-5.6-83.1c-1.9-5.8-7-9-19.2-8a72.6 72.6 0 0 1-35.4-6.2 91 91 0 0 0 34.5-9.7 40.6 40.6 0 0 0 15.3-17.7l-.1-4a252.7 252.7 0 0 1-137-171.1ZM368 467.4l1.1-20.8c1.8-33.8 3.4-63.2 4.8-97.4a70.5 70.5 0 0 0 3.2-123.6v-1.3c0-63.8-48.8-119.2-117.5-119.2-68.8 0-114.4 57.5-114.4 119.1v.2a70.5 70.5 0 0 0 3.6 126l3.2 115.7a240.2 240.2 0 1 1 216 1.3Zm-65.4-69.8c-.6 25.5-11.3 63.1-44.3 63.1-34 0-42.4-42.5-42.4-65.4 0 0 15 21.2 42.4 21.2s44.3-21.2 44.3-21.2v2.3Zm-124-55.7a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Zm163 0a55.4 55.4 0 1 0 0-110.8 55.4 55.4 0 0 0 0 110.8Z\" clip-rule=\"evenodd\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ArgoCDExport", diff --git a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json index cc266b0458f..27f8a34c65f 100644 --- a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json +++ b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/ArmoryAccount.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#263D5C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{fill:#4AC1E0;}\n\t.st2{fill:#263D5C;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{opacity:0.8;fill:#FFFFFF;}\n\t.st2{fill:#FFFFFF;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\" width='223.1' height='211.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;fill:#FF00FF;}\n .st1{opacity:0.8;fill:#FFFFFF;}\n .st2{fill:#FFFFFF;}\n .st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cg\u003e\n \u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n \u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n \u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n \u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n \u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n c0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n c-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n c-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n c2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n c20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n C67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n \u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n c-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n c-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ArmoryAccount", diff --git a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json index a22900e0f98..a4c301c25fc 100644 --- a/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json +++ b/server/meshmodel/armory-spinnaker-operator/1.8.11/v1.0.0/components/SpinnakerService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#263D5C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{fill:#4AC1E0;}\n\t.st2{fill:#263D5C;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;fill:#FF00FF;}\n\t.st1{opacity:0.8;fill:#FFFFFF;}\n\t.st2{fill:#FFFFFF;}\n\t.st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n\t\u003cg\u003e\n\t\t\u003cg\u003e\n\t\t\t\u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n\t\t\t\u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n\t\t\t\u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n\t\t\t\u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n\t\t\t\u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n\t\t\t\tc0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n\t\t\t\tc-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n\t\t\t\tc-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n\t\t\t\tc2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n\t\t\t\tc20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n\t\t\t\tC67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n\t\t\t\u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n\t\t\t\tc-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n\t\t\t\tc-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 223.1 211.7\" style=\"enable-background:new 0 0 223.1 211.7;\" xml:space=\"preserve\" width='223.1' height='211.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;fill:#FF00FF;}\n .st1{opacity:0.8;fill:#FFFFFF;}\n .st2{fill:#FFFFFF;}\n .st3{display:none;fill:#263D5C;}\n\u003c/style\u003e\n\u003crect x=\"-86.3\" y=\"-81.9\" class=\"st0\" width=\"375.3\" height=\"38\"/\u003e\n\u003crect x=\"178.9\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 368.0815 -171.9324)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003crect x=\"-202.8\" y=\"79.1\" transform=\"matrix(-1.836970e-16 1 -1 -1.836970e-16 30.8047 165.3444)\" class=\"st0\" width=\"271.1\" height=\"38\"/\u003e\n\u003crect x=\"10.3\" y=\"240\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 202.7372 518.1167)\" class=\"st0\" width=\"182.1\" height=\"38\"/\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cg\u003e\n \u003crect x=\"158.5\" y=\"26.3\" class=\"st1\" width=\"32.3\" height=\"32.3\"/\u003e\n \u003crect x=\"201.5\" y=\"26.3\" class=\"st1\" width=\"21.6\" height=\"20\"/\u003e\n \u003crect x=\"181.1\" class=\"st1\" width=\"19.3\" height=\"16.3\"/\u003e\n \u003crect x=\"210.8\" y=\"3.3\" class=\"st1\" width=\"12.3\" height=\"11\"/\u003e\n \u003cpath class=\"st2\" d=\"M1.6,43.7c33.8,1.7,62.2-9.5,86-34.2c21.2,25.9,49.9,35.7,82.8,34.1c0.4,6.1,1.1,16.5,1.1,22.3\n c0.1,11.6,0.2,18.7-0.4,30.3c-1,18.5-3.6,36.8-11.1,54c-5.9,13.7-14.9,25.1-26.1,34.9c-13.8,12.2-29.9,20.3-47.1,26.4\n c-0.5,0.2-1.2,0.2-1.7,0c-15.5-5.6-30.1-13-42.9-23.5c-19.8-16.2-32.4-36.8-37.4-62c-2.7-13.6-4-27.2-4.5-41\n c-0.5-13.6,0-27.2,1.3-40.7C1.5,44.2,1.5,44.3,1.6,43.7z M20.8,64.1c0,6.4,0,12.6,0,18.8c0.1,12.5,1.3,24.9,3.6,37.3\n c2.5,13.3,7.2,25.7,15.5,36.5c11.8,15.3,27.2,25.7,45,32.9c0.7,0.3,1.7,0.1,2.4-0.2c5.8-2.8,11.7-5.4,17.3-8.6\n c20.6-11.9,35-28.8,40.9-52.3c4.4-17.7,5.5-35.7,5.5-53.8c0-3.5,0-6.9,0-10.4c-24.1-2.3-45.1-10.9-63.6-25.9\n C67.6,52.9,45.6,61.8,20.8,64.1z\"/\u003e\n \u003cpath class=\"st1\" d=\"M87.5,68.7c7.4,9.2,14.7,18.3,22,27.4c7,8.8,14.1,17.5,21.1,26.3c0.5,0.6,0.8,1.6,0.6,2.3\n c-1.1,5.5-5.2,13.8-9,18.6c-11.6-14.4-23.1-28.7-34.7-43.2c-11.5,14.4-23,28.6-34.6,43.1c-3.6-5.2-6.2-10.8-8.5-16.5\n c-1.2-3-0.1-4.7,1.5-6.7c5.1-6.2,10.2-12.4,15.2-18.6c8.6-10.7,17.1-21.4,25.7-32C86.9,69.2,87.2,69.1,87.5,68.7z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003crect x=\"74.8\" y=\"208.7\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"145.9\" y=\"-72.4\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"-78.6\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003crect x=\"217.9\" y=\"70.9\" class=\"st3\" width=\"65.9\" height=\"69.4\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "SpinnakerService", diff --git a/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json b/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json index 03b4e871bfe..182ca5a312c 100644 --- a/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json +++ b/server/meshmodel/aws-api-gateway-operator/0.1.2/v1.0.0/components/AWSAPIGateway.json @@ -43,8 +43,9 @@ "relationships": null }, "metadata": { - "capabilities": "{ \"designer\": { \"edit\": { \"config\": false, \"lock\": true, \"shape\": { \"convert-shape\": true }, \"style\": true }, \"label\": { \"edit\": true, \"show\": true, \"sync-with-config-property\": \"label\" } } }", + "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWSAPIGateway", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json index b4b2f3641ef..f05fb7b9e06 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/API.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "API", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json index 6a876ac724c..6359da82073 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json index edffe5fd534..e7718c8ae7e 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Authorizer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Authorizer", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json index b9c4fc0880e..94e6b89e79c 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Deployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Deployment", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json index 3ed2d042372..c09646e6a3c 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json index 9dfd2770919..5ce958d7b82 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Integration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Integration", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json index b2643532f90..9e528c9421a 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Route.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Route", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json index 1a14abb81f0..db062432e71 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/Stage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Stage", diff --git a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json index e1cc2aca388..2e4e7d420e8 100644 --- a/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json +++ b/server/meshmodel/aws-apigatewayv2-controller/v1.0.12/v1.0.0/components/VPCLink.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 44 44\" style=\"enable-background:new 0 0 44 44;\" xml:space=\"preserve\" width='44' height='44'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg id=\"Icon-Architecture_x2F_48_x2F_Arch_x5F_-Amazon-API-Gateway_x5F_48\"\u003e\n \u003cg id=\"Icon-Service_x2F_48_x2F_Amazon-API-Gateway_x5F_48\" transform=\"translate(8.000000, 8.000000)\"\u003e\n \u003cpath id=\"Amazon-API-Gateway_Icon_48_Squid\" class=\"st0\" d=\"M10,26h3v-2h-3V26z M15,26h3v-2h-3V26z M10,4h3V2h-3V4z M15,4h3V2h-3\n V4z M4-5.3L-6,0.6v27.8l10,5V-5.3z M6,2h2v2H6v20h2v2H6v9c0,0.3-0.2,0.7-0.5,0.9C5.4,36,5.2,36,5,36c-0.2,0-0.3,0-0.4-0.1l-12-6\n C-7.8,29.7-8,29.4-8,29V0c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0C5.8-7.7,6-7.4,6-7V2z M34,0.6L24-5.3v38.6l10-5V0.6z\n M36,0v29c0,0.4-0.2,0.7-0.6,0.9l-12,6C23.3,36,23.2,36,23,36c-0.2,0-0.4,0-0.5-0.1C22.2,35.7,22,35.3,22,35v-9h-2v-2h2V4h-2V2h2\n v-9c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l12,7C35.8-0.7,36-0.4,36,0L36,0z M16.9,9.3l-1.9-0.7l-4,11l1.9,0.7L16.9,9.3z\n M21.7,14.7c0.4-0.4,0.4-1,0-1.4l-3-3l-1.4,1.4l2.3,2.3l-2.3,2.3l1.4,1.4L21.7,14.7z M9.3,17.7l-3-3c-0.4-0.4-0.4-1,0-1.4l3-3\n l1.4,1.4L8.4,14l2.3,2.3L9.3,17.7z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VPCLink", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json index e375eae7a19..e9cdeba5403 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json index f74d70d3e20..be7216b5fcc 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json index 6b8d019ffcd..2fb89ce7b45 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalableTarget.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ScalableTarget", diff --git a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json index f8fb1dbdd9f..07d056a082b 100644 --- a/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json +++ b/server/meshmodel/aws-applicationautoscaling-controller/v1.0.14/v1.0.0/components/ScalingPolicy.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", - "secondaryColor": "", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/AWS-Application-Auto-Scaling_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M6.854,13.14625 C7.049,13.34125 7.049,13.65825 6.854,13.85325 L3.354,17.35325 L2.647,16.64625 L5.293,14.00025 L1.77635684e-15,14.00025 L1.77635684e-15,13.00025 L5.293,13.00025 L2.647,10.35325 L3.354,9.64625 L6.854,13.14625 Z M28,14.00025 L22.708,14.00025 L25.354,16.64625 L24.647,17.35325 L21.147,13.85325 C20.952,13.65825 20.952,13.34125 21.147,13.14625 L24.647,9.64625 L25.354,10.35325 L22.708,13.00025 L28,13.00025 L28,14.00025 Z M17.647,23.64625 L18.354,24.35325 L14.854,27.85325 C14.756,27.95125 14.628,28.00025 14.5,28.00025 C14.373,28.00025 14.245,27.95125 14.147,27.85325 L10.647,24.35325 L11.354,23.64625 L14,26.29225 L14,22.00025 L15,22.00025 L15,26.29225 L17.647,23.64625 Z M11.354,4.35325 L10.647,3.64625 L14.147,0.14625 C14.342,-0.04875 14.659,-0.04875 14.854,0.14625 L18.354,3.64625 L17.647,4.35325 L15,1.70725 L15,6.00025 L14,6.00025 L14,1.70725 L11.354,4.35325 Z M18,10.79325 C17.524,10.64925 16.991,10.68625 16.494,10.91725 C16.115,11.09525 15.809,11.39825 15.632,11.77225 C15.317,12.44025 15.351,13.16425 15.726,13.75625 C16.202,14.50725 17.169,14.85325 18,14.60025 L18,17.00025 L15.5,17.00025 C15.295,17.00025 15.112,17.12425 15.036,17.31425 C14.96,17.50425 15.008,17.72225 15.157,17.86225 C15.292,17.99225 15.717,18.45225 15.45,18.95125 C15.379,19.08325 15.254,19.26025 15.06,19.35125 C14.568,19.58125 14.198,19.42625 14.019,19.31325 C13.731,19.12925 13.559,18.81725 13.559,18.47925 C13.559,18.22425 13.634,18.06325 13.844,17.86225 C13.993,17.72125 14.041,17.50425 13.965,17.31425 C13.889,17.12425 13.706,17.00025 13.5,17.00025 L10,17.00025 L10,9.50025 C10,9.30725 10.274,9.00025 10.5,9.00025 L18,9.00025 L18,10.79325 Z M18.5,8.00025 L10.5,8.00025 C9.744,8.00025 9,8.74325 9,9.50025 L9,17.50025 C9,17.77625 9.224,18.00025 9.5,18.00025 L12.619,18.00025 C12.579,18.15025 12.559,18.30925 12.559,18.47925 C12.559,19.16125 12.904,19.78825 13.482,20.15625 C13.81,20.36525 14.178,20.47025 14.555,20.47025 C14.864,20.47025 15.18,20.39925 15.485,20.25725 C15.835,20.09225 16.128,19.80425 16.333,19.42225 C16.57,18.97725 16.593,18.47325 16.422,18.00025 L18.5,18.00025 C18.777,18.00025 19,17.77625 19,17.50025 L19,13.72225 C19,13.51825 18.876,13.33425 18.687,13.25825 C18.498,13.18125 18.283,13.22825 18.14,13.37525 C17.705,13.82925 16.902,13.74225 16.571,13.22225 C16.46,13.04725 16.309,12.68225 16.537,12.19925 C16.614,12.03625 16.75,11.90225 16.917,11.82325 C17.368,11.61325 17.823,11.68525 18.14,12.01525 C18.281,12.16225 18.498,12.21025 18.687,12.13325 C18.876,12.05725 19,11.87325 19,11.66925 L19,8.50025 C19,8.22325 18.777,8.00025 18.5,8.00025 L18.5,8.00025 Z\" id=\"AWS-Application-Auto-Scaling_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ScalingPolicy", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json index 77e8900a1e1..39e171cd89d 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/AdoptedResource.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", + "primaryColor": "#8C4FFF", "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json index 94406ecb93c..84043f0c732 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/CachePolicy.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", - "secondaryColor": "", + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CachePolicy", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json index 4d1b88fa1a7..7f44f5e862d 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Distribution.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", - "secondaryColor": "", + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Distribution", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json index 93f9bd12235..f92b8e13cae 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/FieldExport.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", + "primaryColor": "#8C4FFF", "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json index 807d8d76716..7c8a0cc15c7 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/Function.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", - "secondaryColor": "", + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Function", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json index 72bc3191bf8..f2ebffcefc7 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/OriginRequestPolicy.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", - "secondaryColor": "", + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "OriginRequestPolicy", diff --git a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json index bda9380c900..4c4aad292e6 100644 --- a/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json +++ b/server/meshmodel/aws-cloudfront-controller/v0.0.11/v1.0.0/components/ResponseHeadersPolicy.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#ED7100", - "secondaryColor": "", + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ResponseHeadersPolicy", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index db729eca360..e83d869efb7 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json index da2f5a3121b..b2f48180772 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/EventDataStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EventDataStore", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json index ec975e373b0..4859c326d36 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json index 18839ce4ca7..8357f91340e 100644 --- a/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json +++ b/server/meshmodel/aws-cloudtrail-controller/v1.0.11/v1.0.0/components/Trail.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-CloudTrail_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.0269476,24.1310926 L18.0404214,24.1310926 L18.0404214,23.1604686 L14.0269476,23.1604686 L14.0269476,24.1310926 Z M29.9855228,18.8217791 C29.8751523,17.34546 29.1396832,16.2612729 27.9687522,15.8827295 C27.0416398,15.5808655 26.0111804,15.7992559 25.2225328,16.4194846 C24.7389092,15.5012743 24.0114671,14.5985939 23.4104494,14.0239845 C21.4037125,12.1089433 18.8501398,11.5168626 16.4009174,12.4020717 C14.1433384,13.2173959 11.5185265,15.9720269 11.5185265,18.3015246 L11.5185265,18.3306433 C10.0445782,18.6985099 9.01411883,20.6057861 9.01411883,21.6472657 L10.0174873,21.6472657 C10.0174873,20.8950321 10.9857378,19.2391474 12.0202107,19.2391474 C12.2971404,19.2391474 12.5218949,19.0226983 12.5218949,18.7538354 L12.5218949,18.3015246 C12.5218949,16.4359852 14.847703,13.9987483 16.7520963,13.3115465 C19.5785853,12.29045 21.6956927,13.7522098 22.7050813,14.7150688 C23.3562675,15.3352976 24.2241812,16.4534565 24.591414,17.4396105 C24.6546262,17.6075284 24.8071382,17.7288564 24.9897513,17.7560339 C25.1693543,17.7802995 25.3539741,17.709444 25.4643446,17.5677329 C26.0121838,16.8640304 26.8881244,16.5582839 27.6506844,16.8028811 C28.5065577,17.079509 28.9972049,17.959865 28.9972049,19.2168231 C28.9972049,19.454626 29.1748011,19.6565158 29.4166129,19.6953407 C30.6547696,19.8943187 32.9966315,20.9755938 32.9966315,23.6457806 C32.9966315,26.9662854 29.6403641,27.0284053 29.4988891,27.029376 L18.0404214,27.029376 L18.0404214,28 L29.4998925,28 C31.0571203,27.9970881 34,27.0837309 34,23.6457806 C34,20.5989917 31.5678349,19.2187643 29.9855228,18.8217791 L29.9855228,18.8217791 Z M16.0336845,26.0655463 L23.0572637,26.0655463 L23.0572637,25.0949223 L16.0336845,25.0949223 L16.0336845,26.0655463 Z M13.0235792,28 L16.0336845,28 L16.0336845,27.029376 L13.0235792,27.029376 L13.0235792,28 Z M12.0202107,26.0655463 L14.0269476,26.0655463 L14.0269476,25.0949223 L12.0202107,25.0949223 L12.0202107,26.0655463 Z M7.00336845,24.1310926 L12.0202107,24.1310926 L12.0202107,23.1604686 L7.00336845,23.1604686 L7.00336845,24.1310926 Z M6,26.0655463 L11.0168423,26.0655463 L11.0168423,25.0949223 L6,25.0949223 L6,26.0655463 Z M8.0067369,28 L11.0168423,28 L11.0168423,27.029376 L8.0067369,27.029376 L8.0067369,28 Z\" id=\"AWS-CloudTrail_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Trail", diff --git a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json index 84f6340c2cb..ec39dc02d79 100644 --- a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json index 4937152b333..fce60fc7d4e 100644 --- a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json index bf4cebfec0d..fbf89ca038a 100644 --- a/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json +++ b/server/meshmodel/aws-cloudwatch-controller/v0.0.8/v1.0.0/components/MetricAlarm.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MetricAlarm", diff --git a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json index 122c06330b8..415f909b331 100644 --- a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json index 59897218a0a..37121e68f82 100644 --- a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json index 0be9c9523d0..7e23dfd6594 100644 --- a/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json +++ b/server/meshmodel/aws-cloudwatchlogs-controller/v0.0.8/v1.0.0/components/LogGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudWatch_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M27.6299844,24.1243419 C27.6299844,22.2207948 26.0499046,20.6723135 24.1075134,20.6723135 C22.1651223,20.6723135 20.5850425,22.2207948 20.5850425,24.1243419 C20.5850425,26.027889 22.1651223,27.5763703 24.1075134,27.5763703 C26.0499046,27.5763703 27.6299844,26.027889 27.6299844,24.1243419 L27.6299844,24.1243419 Z M28.6364047,24.1243419 C28.6364047,26.5713369 26.6044421,28.5626641 24.1075134,28.5626641 C21.6105848,28.5626641 19.5786222,26.5713369 19.5786222,24.1243419 C19.5786222,21.6773469 21.6105848,19.6860197 24.1075134,19.6860197 C26.6044421,19.6860197 28.6364047,21.6773469 28.6364047,24.1243419 L28.6364047,24.1243419 Z M32.9116779,30.7029217 L29.5250737,27.7134651 C29.2362311,28.1306674 28.8950547,28.5064453 28.5166406,28.8457304 L31.8841229,31.8223652 C32.2001388,32.0995137 32.6862398,32.0738701 32.9690439,31.7661464 C33.2508416,31.459409 33.2256811,30.9810565 32.9116779,30.7029217 L32.9116779,30.7029217 Z M24.1075134,29.5489579 C27.1589797,29.5489579 29.6428249,27.1157711 29.6428249,24.1243419 C29.6428249,21.1329127 27.1589797,18.6997259 24.1075134,18.6997259 C21.0560472,18.6997259 18.572202,21.1329127 18.572202,24.1243419 C18.572202,27.1157711 21.0560472,29.5489579 24.1075134,29.5489579 L24.1075134,29.5489579 Z M33.5859795,29.9710917 C34.3106021,30.6131689 34.3689745,31.7138729 33.7168142,32.425977 C33.3655735,32.8066864 32.8824918,33 32.3963908,33 C31.9726878,33 31.5489849,32.8530422 31.2108277,32.5551815 L27.7165365,29.4661092 C26.6809301,30.1407342 25.4410203,30.5352517 24.1075134,30.5352517 C20.5005032,30.5352517 17.5657817,27.6592189 17.5657817,24.1243419 C17.5657817,20.5894648 20.5005032,17.713432 24.1075134,17.713432 C27.7145237,17.713432 30.6492452,20.5894648 30.6492452,24.1243419 C30.6492452,25.0918961 30.4228006,26.0071768 30.0292903,26.8307321 L33.5859795,29.9710917 Z M10.5922957,24.6174888 L15.5529412,24.6174888 L15.5529412,25.6037826 L10.5862572,25.6037826 C10.0287003,25.5978649 9.42988027,25.3976472 8.79986118,25.0080611 C7.75620337,24.3738742 6,22.8806254 6,20.0351677 C6,16.5930022 8.41037654,15.3285736 9.81231997,14.8847413 C9.80124935,14.7220029 9.79621725,14.5572918 9.79621725,14.3925807 C9.79621725,11.5885474 11.7376019,8.67898061 14.3110186,7.62759139 C17.3242408,6.39077894 20.5135867,7.00523999 22.8424432,9.26582544 C23.5710914,9.97299811 24.1699115,10.83206 24.6278327,11.8292031 C25.2417491,11.3222481 26.0026028,11.0421406 26.8047198,11.0421406 C28.3656776,11.0421406 30.1238938,12.2069536 30.430852,14.7545506 C31.8871421,15.0810138 35,16.2300461 35,20.0756057 C35,21.7276479 34.4333854,23.0650623 33.3132396,24.047411 L32.6409509,23.3136084 C33.5386778,22.5255596 33.9935797,21.4357049 33.9935797,20.0756057 C33.9935797,16.6936042 31.10616,15.8532819 29.8642374,15.6491191 C29.7293771,15.6274206 29.6106195,15.5524623 29.5331251,15.4419974 C29.4546243,15.3315324 29.427451,15.1954239 29.4536179,15.0642468 C29.3066805,12.9900709 28.0164498,12.0284344 26.8047198,12.0284344 C26.0478917,12.0284344 25.3383654,12.389418 24.8572965,13.0186734 C24.7475967,13.1646449 24.5624154,13.2356581 24.3802533,13.211987 C24.1980913,13.1853571 24.044109,13.0620704 23.9817109,12.8914415 C23.5489502,11.7197245 22.9279889,10.7363895 22.1349297,9.96708034 C20.1029672,7.9944927 17.3232344,7.45893515 14.6984904,8.53794059 C12.513552,9.4305365 10.8026375,12.0018045 10.8026375,14.3925807 C10.8026375,14.6608526 10.8187402,14.9291246 10.8509457,15.1865473 C10.8690613,15.326601 10.8247788,15.467641 10.7291688,15.5741607 C10.6526809,15.658982 10.550026,15.7142145 10.4383134,15.7339403 C9.14204407,16.0613899 7.00642027,17.0536015 7.00642027,20.0351677 C7.00642027,22.2849039 8.27249696,23.5266478 9.33326393,24.1726703 C9.80628145,24.4646133 10.228978,24.6135436 10.5922957,24.6174888 L10.5922957,24.6174888 Z\" id=\"Amazon-CloudWatch_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LogGroup", diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json index cb5030dd19f..422b772141c 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json index 9df8782841a..0614b8fb8e0 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json index 29d6d169924..4cbe4c465c8 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json index 0c45421881b..8ae5497f409 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/DBSubnetGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json index 86d81ae20e1..b193f36b620 100644 --- a/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-documentdb-controller/v0.0.6/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json index 1c57d7adb29..0d7f5252a7b 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json index b6c075bb01b..2a27f7ba26c 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Backup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Backup", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json index 9d452818ff0..aeff0c1146a 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json index c225c523dc9..d9c56757128 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/GlobalTable.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "GlobalTable", diff --git a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json index 2d011e0522c..c9f31d706d0 100644 --- a/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json +++ b/server/meshmodel/aws-dynamodb-controller/v1.2.11/v1.0.0/components/Table.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-DynamoDB_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.0661851,31.0185863 L26.0661851,31.0175845 L26.0661851,28.1532509 C24.5397015,29.4606854 21.3722727,30.3222898 17.5279417,30.3222898 C13.6806504,30.3222898 10.5132216,29.4596835 8.98673795,28.1512471 L8.98673795,31.013577 L8.98772469,31.013577 C8.98772469,32.4252056 12.4945914,33.9981345 17.5279417,33.9981345 C22.5543848,33.9981345 26.0582912,32.4282112 26.0661851,31.0185863 L26.0661851,31.0185863 Z M26.0671719,22.8443654 L27.0539098,22.8383542 L27.0539098,22.8443654 C27.0539098,23.4685276 26.7421006,24.0506115 26.1480844,24.5856077 C26.8743235,25.238824 27.0539098,25.880018 27.0539098,26.3358668 C27.0539098,26.3388724 27.0529231,26.341878 27.0529231,26.3438817 L27.0529231,31.013577 L27.0539098,31.013577 C27.0539098,33.2858081 22.9589473,35 17.5279417,35 C12.1245646,35 8.04736342,33.3038416 8.00493369,31.0486423 C8.00493369,31.0396255 8,31.0326125 8,31.0235957 L8,26.3338631 C8,26.3308575 8.00197348,26.3288537 8.00197348,26.3258481 C8.00394695,25.872003 8.18452,25.2368203 8.90286522,24.5886133 C8.18649347,23.9384025 8.00493369,23.3052235 8.00098674,22.8553859 C8.00098674,22.8533822 8,22.8513784 8,22.8493747 L8,18.1596421 C8,18.1566365 8.00197348,18.1536309 8.00197348,18.1516272 C8.00394695,17.6967802 8.18550673,17.0615975 8.90385196,16.4143923 C8.18649347,15.7631797 8.00493369,15.1310026 8.00098674,14.6801631 C8.00098674,14.6781593 8,14.6761556 8,14.6751537 L8,9.98441926 C8,9.97940994 8.00296021,9.97640434 8.00296021,9.97139501 C8.02269497,7.70617702 12.1087768,6 17.5279417,6 C20.1358901,6 22.6422044,6.42980032 24.4015582,7.17719201 L24.0206774,8.10191391 C22.3777587,7.40261176 20.0105743,7.00186554 17.5279417,7.00186554 C12.4945914,7.00186554 8.98772469,8.57479444 8.98772469,9.98642299 C8.98772469,11.3990534 12.4945914,12.9719823 17.5279417,12.9719823 C17.666085,12.9729842 17.7963344,12.9719823 17.9305307,12.9659711 L17.970987,13.9668348 C17.8229763,13.9738479 17.6749656,13.9738479 17.5279417,13.9738479 C13.6806504,13.9738479 10.5132216,13.1112416 8.98673795,11.8018034 L8.98673795,14.6641332 L8.98772469,14.6641332 L8.98772469,14.6761556 C8.99265838,15.2211705 9.53043056,15.6960547 9.97939633,15.9976163 C11.3272804,16.8872729 13.7418281,17.4944034 16.4326625,17.6196366 L16.3862858,18.6205002 C13.6628891,18.4942652 11.27597,17.9081738 9.74060574,17.0115042 C9.35676468,17.3070545 8.98772469,17.7037933 8.98772469,18.1616458 C8.98772469,19.5732744 12.4945914,21.1462033 17.5279417,21.1462033 C18.0242708,21.1462033 18.5087592,21.1291716 18.9814067,21.0951081 L19.0534385,22.0939681 C18.5571093,22.1300352 18.0469658,22.1480688 17.5279417,22.1480688 C13.6806504,22.1480688 10.5132216,21.2864645 8.98673795,19.9770262 L8.98673795,22.8383542 L8.98772469,22.8383542 C8.99265838,23.3963933 9.52944382,23.8712776 9.97939633,24.1718372 C11.5196943,25.1897326 14.4128099,25.8229116 17.5279417,25.8229116 L17.7469975,25.8229116 L17.7469975,26.8247772 L17.5279417,26.8247772 C14.3624863,26.8247772 11.497986,26.2126373 9.74159248,25.1837214 C9.35775142,25.4792717 8.98772469,25.8770124 8.98772469,26.3358668 C8.98772469,27.7474953 12.4945914,29.3204242 17.5279417,29.3204242 C22.5524113,29.3204242 26.055331,27.7525047 26.0661851,26.341878 L26.0661851,26.3338631 L26.0661851,26.3328612 C26.0651984,25.8780142 25.6991186,25.4822773 25.317251,25.1877289 C25.0735268,25.3309956 24.8120412,25.4682512 24.5160198,25.5944863 L24.1341522,24.6717681 C24.4962851,24.516479 24.8120412,24.3491674 25.07254,24.1728391 C25.5264395,23.8662682 26.0671719,23.3863746 26.0671719,22.8443654 L26.0671719,22.8443654 Z M31.3551006,14.4888067 L28.0722234,14.4888067 C27.9133586,14.4888067 27.7643611,14.4106612 27.6716078,14.2794168 C27.5788544,14.1481725 27.554186,13.979859 27.6054963,13.8265736 L29.0599481,9.47947903 L22.5316898,9.47947903 L19.4106377,15.4906723 L22.58004,15.4906723 C22.7339711,15.4906723 22.8790216,15.5638085 22.9717749,15.6880398 C23.065515,15.8112693 23.0961039,15.9725696 23.0556476,16.1238513 L20.3381713,26.2316728 L31.3551006,14.4888067 Z M32.8648096,14.3335176 L19.7056723,28.3596352 C19.608972,28.4618255 19.4787226,28.5149243 19.3474864,28.5149243 C19.2646004,28.5149243 19.1807277,28.4938852 19.1047489,28.4508049 C18.908388,28.3375941 18.8116877,28.1031576 18.8718787,27.8817453 L21.9347133,16.4925378 L18.5926319,16.4925378 C18.4199528,16.4925378 18.2591145,16.4003662 18.1703081,16.2500864 C18.0805149,16.0998065 18.0745945,15.9134595 18.155507,15.7581704 L21.7975568,8.74511159 C21.883403,8.58080564 22.0511484,8.47761349 22.2336949,8.47761349 L29.7486912,8.47761349 C29.9085427,8.47761349 30.0575401,8.555759 30.1502935,8.68700339 C30.2420601,8.81824777 30.2677153,8.98656118 30.216405,9.13984661 L28.7609665,13.4869412 L32.5066237,13.4869412 C32.7049581,13.4869412 32.8825709,13.6061632 32.9605232,13.7905065 C33.0374888,13.9748497 33,14.1882471 32.8648096,14.3335176 L32.8648096,14.3335176 Z M9.72777815,31.0406274 C10.2990994,31.3732467 10.9986966,31.6667933 11.806835,31.9112485 L12.0880553,30.9514613 C11.3539223,30.7290472 10.7253702,30.4665584 10.2191737,30.1720099 L9.72777815,31.0406274 Z M11.806835,23.8091619 L12.0880553,22.8493747 C11.3558958,22.6279624 10.7273437,22.3654736 10.2191737,22.0689214 L9.72777815,22.9385407 C10.3010729,23.2731638 11.0006701,23.5657086 11.806835,23.8091619 L11.806835,23.8091619 Z M9.72777815,14.8354522 L10.2191737,13.9668348 C10.7243835,14.2613833 11.3539223,14.5248739 12.0880553,14.7472881 L11.806835,15.7070752 C10.9977099,15.4626201 10.2990994,15.1690734 9.72777815,14.8354522 L9.72777815,14.8354522 Z\" id=\"Amazon-DynamoDB_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Table", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json index c24fe015637..792034b5076 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json index 9030a3abf45..7b9cd415ffa 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/DHCPOptions.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DHCPOptions", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json index 81ba213ad1c..80af4314e7c 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/ElasticIPAddress.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ElasticIPAddress", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json index 2209232c5e8..1681b52da82 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json index bf07bc26771..f4e237ea7cd 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/FlowLog.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FlowLog", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json index 439f3a9e5bc..d5bc1f813b2 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Instance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Instance", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json index 5a1c5be8688..3e23b04cade 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/InternetGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "InternetGateway", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json index 9c3fb9fb600..a0560fab43c 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NATGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NATGateway", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json index 7b92372137f..8c2bab26c18 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/NetworkACL.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NetworkACL", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json index 75d824cd361..b9197b7318e 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/RouteTable.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RouteTable", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json index de69dae27d1..854a690eeba 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/SecurityGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "SecurityGroup", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json index 36c2dcc4b9e..c3cb1009ba2 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/Subnet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Subnet", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json index 9a274b1f307..35504a30e70 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/TransitGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TransitGateway", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json index 85544ec0e18..6cd390a0841 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPC.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPC", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json index b4720b09d30..0ceec1ada28 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPCEndpoint", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json index 061ad0a2694..7ea5efab16b 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCEndpointServiceConfiguration.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPCEndpointServiceConfiguration", diff --git a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json index 4695c415fd6..ed31bc6cc53 100644 --- a/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json +++ b/server/meshmodel/aws-ec2-controller/v1.2.10/v1.0.0/components/VPCPeeringConnection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EC2_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.052,27 L26,13.948 L13,14 L13,27.052 L26.052,27 Z M27,14 L29,14 L29,15 L27,15 L27,17 L29,17 L29,18 L27,18 L27,20 L29,20 L29,21 L27,21 L27,23 L29,23 L29,24 L27,24 L27,26 L29,26 L29,27 L27,27 L27,27.052 C27,27.575 26.574,28 26.052,28 L26,28 L26,30 L25,30 L25,28 L23,28 L23,30 L22,30 L22,28 L20,28 L20,30 L19,30 L19,28 L17,28 L17,30 L16,30 L16,28 L14,28 L14,30 L13,30 L13,28 L12.948,28 C12.426,28 12,27.575 12,27.052 L12,27 L10,27 L10,26 L12,26 L12,24 L10,24 L10,23 L12,23 L12,21 L10,21 L10,20 L12,20 L12,18 L10,18 L10,17 L12,17 L12,15 L10,15 L10,14 L12,14 L12,13.948 C12,13.425 12.426,13 12.948,13 L13,13 L13,11 L14,11 L14,13 L16,13 L16,11 L17,11 L17,13 L19,13 L19,11 L20,11 L20,13 L22,13 L22,11 L23,11 L23,13 L25,13 L25,11 L26,11 L26,13 L26.052,13 C26.574,13 27,13.425 27,13.948 L27,14 Z M21,33 L7,33 L7,19 L9,19 L9,18 L7.062,18 C6.477,18 6,18.477 6,19.062 L6,32.938 C6,33.523 6.477,34 7.062,34 L20.939,34 C21.524,34 22,33.523 22,32.938 L22,31 L21,31 L21,33 Z M34,7.062 L34,20.938 C34,21.523 33.524,22 32.939,22 L30,22 L30,21 L33,21 L33,7 L19,7 L19,10 L18,10 L18,7.062 C18,6.477 18.477,6 19.062,6 L32.939,6 C33.524,6 34,6.477 34,7.062 L34,7.062 Z\" id=\"Amazon-EC2_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VPCPeeringConnection", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json index 08b4cf5a0cd..c89b829a50b 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json index fabac927050..88f5e0bb28a 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json index f066dbb412c..ef85556754c 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/PullThroughCacheRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PullThroughCacheRule", diff --git a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json index 2fc316ac62c..b697fa7e434 100644 --- a/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json +++ b/server/meshmodel/aws-ecr-controller/v1.0.15/v1.0.0/components/Repository.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.404,19.0059205 C19.155,19.1466961 19,19.4095429 19,19.6920786 L19,32.8747795 L9,27.190595 L9,14.4075786 L20.253,8.01164047 L30.22,12.8580625 L19.404,19.0059205 Z M31.455,12.8432958 C31.455,12.5656823 31.303,12.3077578 31.031,12.1551688 L20.639,7.10201343 C20.393,6.96616004 20.092,6.96517559 19.85,7.10398232 L8.404,13.6101783 C8.155,13.7499695 8,14.0128163 8,14.2963364 L8,27.3028217 C8,27.5853574 8.155,27.8482041 8.402,27.9879953 L18.794,33.8946644 C18.918,33.9655444 19.057,34 19.196,34 C19.335,34 19.474,33.9655444 19.598,33.8946644 C19.845,33.7538888 20,33.491042 20,33.2094908 L20,19.8043053 L31.058,13.5186249 C31.303,13.3798182 31.455,13.1209092 31.455,12.8432958 L31.455,12.8432958 Z M32,27.5341662 L22.961,32.8235884 L22.961,27.8619864 L27.955,24.8623829 L27.988,24.6310384 C27.997,24.5709872 28,24.5709872 28,24.2904205 L28,18.7440582 L32,16.4699906 L32,27.5341662 Z M32.598,15.4510902 C32.35,15.3093301 32.042,15.3093301 31.794,15.4501057 L27.322,17.9929268 C27.127,18.1051535 27,18.3227158 27,18.5452003 L27,24.2825449 L22.357,27.0704927 C22.112,27.2122528 21.961,27.4731307 21.961,27.752713 L21.961,33.1632219 C21.961,33.4487109 22.111,33.7046665 22.362,33.8483955 C22.485,33.9182911 22.624,33.9537311 22.762,33.9537311 C22.903,33.9537311 23.045,33.9173066 23.173,33.8454422 L32.595,28.3305821 C32.844,28.190791 33,27.9279442 33,27.6444241 L33,16.1352794 C33,15.8497903 32.849,15.5938347 32.598,15.4510902 L32.598,15.4510902 Z\" id=\"Amazon-Elastic-Container-Registry_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Repository", diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json index 5ba0fd787bb..8f55f5f949a 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json index a7a9d18a9b3..2389ce4a7ff 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Cluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json index 70cd4114789..f7e7468d21e 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json index b6b04f21ad2..c809cfd7fd6 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/Service.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json index 9ea097acc0e..58a7c692efb 100644 --- a/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json +++ b/server/meshmodel/aws-ecs-controller/v0.0.6/v1.0.0/components/TaskDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json index cea0fe03c21..b730bdcdfc9 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AccessPoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AccessPoint", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json index 39f3f91115e..af7d79be5b7 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json index 13aa11c8745..9cf8262ead7 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json index 1a4c35fc1cb..a0f456012e0 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/FileSystem.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FileSystem", diff --git a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json index 8afa4f5460d..aac51beec79 100644 --- a/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json +++ b/server/meshmodel/aws-efs-controller/v0.0.7/v1.0.0/components/MountTarget.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg width=\"48px\" height=\"48px\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MountTarget", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json index c3723243262..90d6fc917a0 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AccessEntry.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "", + "secondaryColor": "#00D3A9", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AccessEntry", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json index ac014ea2f8e..c76222aedd2 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Addon.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Addon", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json index 81ca79c2220..c7b2aaf601e 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json index 8b6a7e53710..c0e0d77c62b 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Cluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Cluster", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json index a9133822123..269f9d8d380 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FargateProfile.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FargateProfile", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json index 120ad7e4d11..8a7ddd5fc59 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json index 34089dc569e..f5b913eeb5b 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/IdentityProviderConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "IdentityProviderConfig", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json index 6cd137764cf..0133629d162 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/Nodegroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Nodegroup", diff --git a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json index 12f90c40df9..ef23ffcca86 100644 --- a/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json +++ b/server/meshmodel/aws-eks-controller/v1.4.1/v1.0.0/components/PodIdentityAssociation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PodIdentityAssociation", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json index 2e25ce2c635..2d08ab6fc84 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/AdoptedResource.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json index 7a856e8a3ce..ac189e67724 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheParameterGroup.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CacheParameterGroup", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json index e182d8ecf3c..1eee95c79a7 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/CacheSubnetGroup.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CacheSubnetGroup", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json index ad77c393b64..77bbef9553b 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/FieldExport.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json index 686dcc6d7f4..7c4d812c114 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/ReplicationGroup.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ReplicationGroup", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json index 5f9c61fadf1..fa904b4722f 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/Snapshot.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Snapshot", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json index 4c83d72b47e..7cc34bbdd66 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/User.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json index adb8cdb5e3f..ab7be0f3251 100644 --- a/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json +++ b/server/meshmodel/aws-elasticache-controller/v0.0.30/v1.0.0/components/UserGroup.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "UserGroup", diff --git a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json index 656bb48db13..d8cd5b1fb85 100644 --- a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/AdoptedResource.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json index 41c284578b1..612bc16f62e 100644 --- a/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json +++ b/server/meshmodel/aws-elasticsearchservice-controller/v0.0.2/v1.0.0/components/ElasticsearchDomain.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", "secondaryColor": "", - "shape": "cilynder", + "shape": "cylinder", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-ElastiCache_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M25,22.0361566 L25,19.1324721 C23.919,19.837028 22.128,20.2812261 20.016,20.2812261 C17.788,20.2812261 16.048,19.8827396 15,19.2040208 L15,22.0361566 C15,22.7635683 16.918,23.5496102 20.016,23.5496102 C23.136,23.5496102 25,22.7804617 25,22.0361566 L25,22.0361566 Z M25,26.155175 L25,23.5327167 C23.983,24.1706926 22.245,24.543342 20.016,24.543342 C17.771,24.543342 16.021,24.1696988 15,23.5297355 L15,26.155175 C15,26.8468124 16.786,27.8484941 20.016,27.8484941 C23.225,27.8484941 25,26.8468124 25,26.155175 L25,26.155175 Z M25,29.9641492 L25,27.7222902 C23.965,28.4188962 22.194,28.842226 20.016,28.842226 C17.822,28.842226 16.04,28.4169087 15,27.719309 L15,29.9641492 C15,30.6846048 16.904,32.0062682 20.016,32.0062682 C23.107,32.0062682 25,30.6846048 25,29.9641492 L25,29.9641492 Z M14.903,17.5047393 C14.903,18.3812108 16.815,19.2874943 20.016,19.2874943 C23.117,19.2874943 25.097,18.232151 25.097,17.5047393 C25.097,16.8498701 23.331,15.9425929 20.016,15.9425929 C16.849,15.9425929 14.903,16.8528512 14.903,17.5047393 L14.903,17.5047393 Z M26.097,17.5047393 C26.097,17.6776487 26.061,17.8455894 26,18.0075677 L26,29.9641492 C26,31.6097691 23.26,33 20.016,33 C16.755,33 14,31.6097691 14,29.9641492 L14,18.0343984 C13.943,17.8644703 13.903,17.6895735 13.903,17.5047393 C13.903,15.7488152 17.071,14.948861 20.016,14.948861 C23.043,14.948861 26.097,15.7388778 26.097,17.5047393 L26.097,17.5047393 Z M33.5,11.4717933 C33.776,11.4717933 34,11.2501911 34,10.9749274 L34,7.49686592 C34,7.22259593 33.776,7 33.5,7 L6.5,7 C6.224,7 6,7.22259593 6,7.49686592 L6,10.9749274 C6,11.2501911 6.224,11.4717933 6.5,11.4717933 C7.052,11.4717933 7.5,11.9179789 7.5,12.4655251 C7.5,13.0130714 7.052,13.459257 6.5,13.459257 C6.224,13.459257 6,13.6818529 6,13.9561229 L6,23.3965754 C6,23.6718392 6.224,23.8934414 6.5,23.8934414 L8,23.8934414 L9,23.8934414 L12,23.8934414 L12,22.8997095 L9,22.8997095 L9,21.9059777 L12,21.9059777 L12,20.9122458 L8.5,20.9122458 C8.224,20.9122458 8,21.1348418 8,21.4091118 L8,22.8997095 L7,22.8997095 L7,14.3903837 C7.861,14.1687815 8.5,13.3896958 8.5,12.4655251 C8.5,11.5413545 7.861,10.7622688 7,10.5416603 L7,7.99373185 L33,7.99373185 L33,10.5416603 C32.139,10.7622688 31.5,11.5413545 31.5,12.4655251 C31.5,13.3896958 32.139,14.1687815 33,14.3903837 L33,22.8997095 L32,22.8997095 L32,21.4091118 C32,21.1348418 31.776,20.9122458 31.5,20.9122458 L28,20.9122458 L28,21.9059777 L31,21.9059777 L31,22.8997095 L28,22.8997095 L28,23.8934414 L31,23.8934414 L32,23.8934414 L33.5,23.8934414 C33.776,23.8934414 34,23.6718392 34,23.3965754 L34,13.9561229 C34,13.6818529 33.776,13.459257 33.5,13.459257 C32.948,13.459257 32.5,13.0130714 32.5,12.4655251 C32.5,11.9179789 32.948,11.4717933 33.5,11.4717933 L33.5,11.4717933 Z M12.5,9.98119554 L10.5,9.98119554 C10.224,9.98119554 10,10.2037915 10,10.4780615 L10,18.4279162 C10,18.7031799 10.224,18.9247821 10.5,18.9247821 L12,18.9247821 L12,17.9310503 L11,17.9310503 L11,10.9749274 L12,10.9749274 L12,13.9561229 L13,13.9561229 L13,10.4780615 C13,10.2037915 12.776,9.98119554 12.5,9.98119554 L12.5,9.98119554 Z M28,17.9310503 L28,18.9247821 L29.5,18.9247821 C29.776,18.9247821 30,18.7031799 30,18.4279162 L30,10.4780615 C30,10.2037915 29.776,9.98119554 29.5,9.98119554 L27.5,9.98119554 C27.224,9.98119554 27,10.2037915 27,10.4780615 L27,13.9561229 L28,13.9561229 L28,10.9749274 L29,10.9749274 L29,17.9310503 L28,17.9310503 Z M25,12.9623911 L25,10.4780615 C25,10.2037915 24.776,9.98119554 24.5,9.98119554 L21.5,9.98119554 C21.224,9.98119554 21,10.2037915 21,10.4780615 L21,12.9623911 L22,12.9623911 L22,10.9749274 L24,10.9749274 L24,12.9623911 L25,12.9623911 Z M18,12.9623911 L18,10.9749274 L16,10.9749274 L16,12.9623911 L15,12.9623911 L15,10.4780615 C15,10.2037915 15.224,9.98119554 15.5,9.98119554 L18.5,9.98119554 C18.776,9.98119554 19,10.2037915 19,10.4780615 L19,12.9623911 L18,12.9623911 Z\" id=\"Amazon-ElastiCache_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ElasticsearchDomain", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json index e94c7ff6bb5..d6c5db06ed8 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json index 389b5132f1c..21fdd5225fd 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json index 42771010c51..3401fe8d5d5 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/JobRun.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "JobRun", diff --git a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json index 24d033019f3..76f71cbf97e 100644 --- a/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json +++ b/server/meshmodel/aws-emrcontainers-controller/v1.0.10/v1.0.0/components/VirtualCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EMR_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M32.0111912,25.3637158 C32.0111912,24.8263204 31.8031774,24.3218879 31.4267713,23.941316 C31.0384788,23.5497565 30.527359,23.3539768 30.0172297,23.3539768 C29.5071005,23.3539768 28.9959807,23.5497565 28.6066976,23.941316 C27.8291219,24.7254339 27.8291219,26.0009989 28.6066976,26.7851167 C29.3595097,27.5452616 30.6739592,27.5462605 31.4267713,26.7851167 C31.8031774,26.4055438 32.0111912,25.9011112 32.0111912,25.3637158 L32.0111912,25.3637158 Z M27.2338061,24.2949182 C27.3734725,23.9223374 27.5874296,23.5717318 27.8796396,23.2680734 L26.8217405,21.237358 L25.5063004,23.7445374 L27.2338061,24.2949182 Z M24.0749669,24.336871 L17.2085282,22.1483331 C16.8529235,22.7906106 16.3735011,23.3509801 15.8039393,23.8024722 L19.1896126,28.5391435 C20.030583,27.9557997 21.1023497,27.8579099 22.0215729,28.2484705 L24.0749669,24.336871 Z M22.8486756,31.005369 C22.8486756,30.471969 22.6426428,29.9705332 22.2682179,29.5929579 C21.8819064,29.2033962 21.3747488,29.0086153 20.8675912,29.0086153 C20.3604336,29.0086153 19.8532759,29.2033962 19.4669645,29.5929579 C19.0925395,29.9705332 18.8865067,30.471969 18.8865067,31.005369 C18.8865067,31.5387689 19.0925395,32.0402048 19.4669645,32.41778 C20.2385969,33.1959046 21.4965855,33.1959046 22.2682179,32.41778 C22.6426428,32.0402048 22.8486756,31.5387689 22.8486756,31.005369 L22.8486756,31.005369 Z M12.4479822,23.9782744 C14.9055175,23.9782744 16.9054223,21.9625421 16.9054223,19.4833313 C16.9054223,17.0051192 14.9055175,14.9883881 12.4479822,14.9883881 C9.99044698,14.9883881 7.99054223,17.0051192 7.99054223,19.4833313 C7.99054223,21.9625421 9.99044698,23.9782744 12.4479822,23.9782744 L12.4479822,23.9782744 Z M18.8865067,8.99513048 C18.8865067,9.5285304 19.0925395,10.0299663 19.4669645,10.4075415 C20.2385969,11.186665 21.4965855,11.186665 22.2682179,10.4075415 C22.6426428,10.0299663 22.8486756,9.5285304 22.8486756,8.99513048 C22.8486756,8.46173055 22.6426428,7.96029467 22.2682179,7.58271944 C21.8819064,7.19415657 21.3747488,6.99837683 20.8675912,6.99837683 C20.3604336,6.99837683 19.8532759,7.19415657 19.4669645,7.58271944 C19.0925395,7.96029467 18.8865067,8.46173055 18.8865067,8.99513048 L18.8865067,8.99513048 Z M21.9027078,11.7959795 C21.5688951,11.9208391 21.2192337,11.9897615 20.8675912,11.9907604 C20.3227929,11.9907604 19.7819569,11.8349357 19.3045155,11.5362717 L16.3309078,15.6366588 C16.9321669,16.2539643 17.3917785,17.0121114 17.6522911,17.8581596 L24.0264303,15.8733924 L21.9027078,11.7959795 Z M17.8959645,19.4833313 C17.8959645,20.0946435 17.7929481,20.679985 17.6096978,21.229367 L24.546465,23.4388813 L26.2630747,20.1665626 L24.4949568,16.7723811 L17.8553523,18.8400549 C17.8791253,19.0518167 17.8959645,19.2655762 17.8959645,19.4833313 L17.8959645,19.4833313 Z M25.4577639,16.4727182 L26.8257027,19.097765 L28.1183603,16.6345361 C28.0480318,16.5756024 27.9727506,16.5266575 27.9063842,16.4597328 C27.7231339,16.2749407 27.5785148,16.0671744 27.4527159,15.8514172 L25.4577639,16.4727182 Z M28.6066976,15.7535273 C29.3595097,16.5136721 30.6739592,16.514671 31.4267713,15.7535273 C31.8031774,15.3739543 32.0111912,14.8695218 32.0111912,14.3321264 C32.0111912,13.7947309 31.8031774,13.2902984 31.4267713,12.9097266 C31.0384788,12.5181671 30.527359,12.3223873 30.0172297,12.3223873 C29.5071005,12.3223873 28.9959807,12.5181671 28.6066976,12.9097266 C27.8291219,13.6938444 27.8291219,14.9694094 28.6066976,15.7535273 L28.6066976,15.7535273 Z M32.1270847,23.2351105 C33.2909718,24.4087901 33.2909718,26.3186415 32.1270847,27.4913223 C31.5456364,28.0786615 30.7819283,28.3713323 30.0172297,28.3713323 C29.2525311,28.3713323 28.4878325,28.0786615 27.9063842,27.4913223 C27.3041346,26.8840055 27.0208395,26.0799101 27.0416409,25.281808 L25.0348023,24.6425272 L22.8556094,28.7938569 C22.8922595,28.8268198 22.9338623,28.8507929 22.9685312,28.8867524 C23.5291781,29.4521164 23.8392179,30.2052691 23.8392179,31.005369 C23.8392179,31.8054688 23.5291781,32.5586216 22.9685312,33.1239855 C22.389064,33.7083281 21.6293181,34 20.8675912,34 C20.1058642,34 19.3461183,33.7083281 18.7666511,33.1239855 C18.2050137,32.5586216 17.8959645,31.8054688 17.8959645,31.005369 C17.8959645,30.3620926 18.1039784,29.7547759 18.4734506,29.245349 L14.9728744,24.3468598 C14.2170907,24.7474092 13.3592811,24.9771507 12.4479822,24.9771507 C9.44465822,24.9771507 7,22.512923 7,19.4833313 C7,16.4547384 9.44465822,13.9895118 12.4479822,13.9895118 C13.6108788,13.9895118 14.6875982,14.3620926 15.573143,14.9903858 L18.5645805,10.8660257 C18.1396379,10.3356224 17.8959645,9.68735173 17.8959645,8.99513048 C17.8959645,8.19503059 18.2050137,7.44287676 18.7666511,6.87651392 C19.9255855,5.70782869 21.8095968,5.70782869 22.9685312,6.87651392 C23.5291781,7.44287676 23.8392179,8.19503059 23.8392179,8.99513048 C23.8392179,9.79622924 23.5291781,10.5483831 22.9685312,11.113747 C22.9031554,11.1806717 22.8268837,11.2306156 22.7555647,11.2895493 L24.9882468,15.5737296 L27.091168,14.9184667 C26.9059366,13.9655388 27.1763546,12.9396928 27.9063842,12.203521 C29.0682903,11.0308403 30.9631975,11.0288426 32.1270847,12.203521 C33.2909718,13.3772006 33.2909718,15.2870521 32.1270847,16.4597328 C31.5456364,17.047072 30.7819283,17.3397428 30.0172297,17.3397428 C29.6616251,17.3397428 29.3080015,17.2698215 28.9712171,17.143963 L27.3833779,20.1685604 L28.6918842,22.6817331 C29.8082253,22.1223623 31.1989466,22.2981646 32.1270847,23.2351105 L32.1270847,23.2351105 Z M12.9432534,18.9838931 L14.9243378,18.9838931 L14.9243378,19.9827694 L12.9432534,19.9827694 L12.9432534,21.9805219 L11.9527111,21.9805219 L11.9527111,19.9827694 L9.97162668,19.9827694 L9.97162668,18.9838931 L11.9527111,18.9838931 L11.9527111,16.9861406 L12.9432534,16.9861406 L12.9432534,18.9838931 Z\" id=\"Amazon-EMR_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "VirtualCluster", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index b2f33fadbb7..1549570e459 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json index 1a772f3838a..4d6e2057562 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Archive.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Archive", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json index 3d9f161c9a8..0d9eac4ec2d 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Endpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Endpoint", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json index 27c337a899e..a8ae9a8fc59 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/EventBus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EventBus", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json index 2b92747edb0..f0a42fabe20 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json index b133348ca70..d451e6b00a0 100644 --- a/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json +++ b/server/meshmodel/aws-eventbridge-controller/v1.0.11/v1.0.0/components/Rule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width=\"40\" height=\"40\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-EventBridge_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.0555,28.5939541 C9.9095,28.5939541 8.9765,27.653816 8.9765,26.4980407 C8.9765,25.343273 9.9095,24.4031349 11.0555,24.4031349 C12.2015,24.4031349 13.1355,25.343273 13.1355,26.4980407 C13.1355,27.653816 12.2015,28.5939541 11.0555,28.5939541 L11.0555,28.5939541 Z M12.9125,28.9567083 C13.6515,28.389401 14.1355,27.5036761 14.1355,26.4980407 C14.1355,24.7870498 12.7535,23.3954842 11.0555,23.3954842 C10.6365,23.3954842 10.2385,23.4811345 9.8745,23.6342974 L8.0765,20.4964732 L10.4385,16.3741743 L9.5735,15.8703489 L7.0675,20.2445606 C6.9775,20.4007464 6.9775,20.5922 7.0675,20.7483859 L9.0325,24.1784288 C8.3905,24.7467438 7.9765,25.5710021 7.9765,26.4980407 C7.9765,28.2100392 9.3575,29.6016048 11.0555,29.6016048 C11.3975,29.6016048 11.7205,29.5320769 12.0285,29.4282889 L13.5605,32.2718791 C13.6485,32.4341108 13.8165,32.5348759 13.9995,32.5348759 L19.4995,32.5348759 L19.4995,31.5272252 L14.2975,31.5272252 L12.9125,28.9567083 Z M29.9445,16.5605897 C28.7975,16.5605897 27.8645,15.6204516 27.8645,14.4646762 C27.8645,13.3099086 28.7975,12.3687628 29.9445,12.3687628 C31.0905,12.3687628 32.0235,13.3099086 32.0235,14.4646762 C32.0235,15.6204516 31.0905,16.5605897 29.9445,16.5605897 L29.9445,16.5605897 Z M31.9675,16.7852958 C32.6095,16.2159731 33.0235,15.3917149 33.0235,14.4646762 C33.0235,12.7536854 31.6425,11.3611121 29.9445,11.3611121 C29.6035,11.3611121 29.2815,11.43064 28.9745,11.5344281 L27.4415,8.61929464 C27.3555,8.45403993 27.1855,8.35125956 26.9995,8.35125956 L21.4995,8.35125956 L21.4995,9.35891024 L26.6995,9.35891024 L28.0895,12.0029856 C27.3505,12.570293 26.8645,13.4580332 26.8645,14.4646762 C26.8645,16.1756671 28.2455,17.5682403 29.9445,17.5682403 C30.3635,17.5682403 30.7615,17.4815824 31.1245,17.3284195 L32.9225,20.4672514 L30.5615,24.5885426 L31.4265,25.092368 L33.9325,20.719164 C34.0225,20.5629782 34.0225,20.3705169 33.9325,20.2153387 L31.9675,16.7852958 Z M27.3945,32.9923493 C26.2475,32.9923493 25.3145,32.0522112 25.3145,30.8974436 C25.3145,29.7416682 26.2475,28.8015301 27.3945,28.8015301 C28.5405,28.8015301 29.4735,29.7416682 29.4735,30.8974436 C29.4735,32.0522112 28.5405,32.9923493 27.3945,32.9923493 L27.3945,32.9923493 Z M18.2045,24.500877 L15.9115,20.4994962 L18.2045,16.499123 L22.7885,16.499123 L25.0825,20.4994962 L22.7885,24.500877 L18.2045,24.500877 Z M13.6365,12.1984699 C12.4905,12.1984699 11.5575,11.2583318 11.5575,10.1025564 C11.5575,8.94778877 12.4905,8.00765068 13.6365,8.00765068 C14.7835,8.00765068 15.7165,8.94778877 15.7165,10.1025564 C15.7165,11.2583318 14.7835,12.1984699 13.6365,12.1984699 L13.6365,12.1984699 Z M27.3945,27.7938795 C26.7695,27.7938795 26.1895,27.9853331 25.7025,28.308789 L23.6335,25.0419854 L26.0925,20.7514088 C26.1825,20.5962306 26.1825,20.4037694 26.0925,20.2475835 L23.5105,15.743385 C23.4215,15.5871991 23.2565,15.4914723 23.0775,15.4914723 L18.3255,15.4914723 L16.0475,12.0100392 C16.4595,11.4830379 16.7165,10.825042 16.7165,10.1025564 C16.7165,8.39156559 15.3345,7 13.6365,7 C11.9385,7 10.5575,8.39156559 10.5575,10.1025564 C10.5575,11.814555 11.9385,13.2061205 13.6365,13.2061205 C14.2515,13.2061205 14.8235,13.0186975 15.3045,12.7043105 L17.3945,15.8975555 L14.9025,20.2475835 C14.8125,20.4037694 14.8125,20.5962306 14.9025,20.7514088 L17.4835,25.256615 C17.5725,25.4128009 17.7375,25.5085277 17.9155,25.5085277 L22.7435,25.5085277 L24.9625,29.0141444 C24.5625,29.5381228 24.3145,30.1860422 24.3145,30.8974436 C24.3145,32.6074268 25.6965,34 27.3945,34 C29.0925,34 30.4735,32.6074268 30.4735,30.8974436 C30.4735,29.185445 29.0925,27.7938795 27.3945,27.7938795 L27.3945,27.7938795 Z\" id=\"Amazon-EventBridge_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Rule", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json index 1c5b0325988..f3c8f536cf2 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/AdoptedResource.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json index e9d9c142d2d..490391708f2 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/FieldExport.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json index d79a7ea1d18..398b60ca925 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Group.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Group", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json index d0a2a5f21fb..0fe6c86a8bd 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/InstanceProfile.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "InstanceProfile", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json index c951d507524..0576bbea1fe 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/OpenIDConnectProvider.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "OpenIDConnectProvider", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json index f9557466b87..9fbb763dcd9 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Policy.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Policy", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json index 1cd7a00c89e..c983bfac17a 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/Role.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Role", diff --git a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json index c149e49b1c0..e3a9f025452 100644 --- a/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json +++ b/server/meshmodel/aws-iam-controller/v1.3.8/v1.0.0/components/User.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", "secondaryColor": "", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7,30 L33,30 L33,11 L7,11 L7,30 Z M34,10.5 L34,30.5 C34,30.776 33.776,31 33.5,31 L6.5,31 C6.224,31 6,30.776 6,30.5 L6,10.5 C6,10.224 6.224,10 6.5,10 L33.5,10 C33.776,10 34,10.224 34,10.5 L34,10.5 Z M22,24 L30,24 L30,23 L22,23 L22,24 Z M28,21 L31,21 L31,20 L28,20 L28,21 Z M22,21 L26,21 L26,20 L22,20 L22,21 Z M15,23.5 C15,23.224 14.775,23 14.5,23 C14.225,23 14,23.224 14,23.5 C14,23.776 14.225,24 14.5,24 C14.775,24 15,23.776 15,23.5 L15,23.5 Z M16,23.5 C16,24.151 15.581,24.701 15,24.908 L15,26 L14,26 L14,24.908 C13.419,24.701 13,24.151 13,23.5 C13,22.673 13.673,22 14.5,22 C15.327,22 16,22.673 16,23.5 L16,23.5 Z M10,26.996 L18.997,27 L18.998,25 L17,25 L17,24 L18.998,24 L18.999,23 L17,23 L17,22 L18.999,22 L19,20.004 L10.003,20 L10,26.996 Z M11,19 L17.998,19.003 L17.998,15.577 C17.998,14.759 17.332,14.163 16.935,13.881 C16.248,13.393 15.338,13.101 14.5,13.101 L14.499,13.101 C12.734,13.101 11.002,14.326 11.001,15.575 L11,19 Z M9,27.496 L9.003,19.5 C9.003,19.367 9.056,19.24 9.149,19.146 C9.243,19.053 9.37,19 9.503,19 L10,19 L10.001,15.575 C10.002,13.586 12.376,12.101 14.499,12.101 L14.5,12.101 C15.553,12.101 16.651,12.453 17.514,13.065 C18.472,13.746 18.999,14.638 18.998,15.578 L18.998,19.004 L19.5,19.004 C19.776,19.004 20,19.228 20,19.504 L19.997,27.5 C19.997,27.633 19.944,27.76 19.851,27.854 C19.757,27.947 19.63,28 19.497,28 L9.5,27.996 C9.224,27.996 9,27.772 9,27.496 L9,27.496 Z M29,18 L31,18 L31,17 L29,17 L29,18 Z M22,18 L28,18 L28,17 L22,17 L22,18 Z\" id=\"AWS-Identity-and-Access-Management_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json index daac437ebe7..2cc85f8658b 100644 --- a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json index 89d8cde66e4..345afd8253a 100644 --- a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json index 5a590d00f8a..2602ec822d9 100644 --- a/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json +++ b/server/meshmodel/aws-kinesis-controller/v0.0.15/v1.0.0/components/Stream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Analytics\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Kinesis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.88643387,31.1072507 L10.8907602,31.1072507 C10.8907602,27.0640447 13.5170735,22.9312582 33,22.9312582 L33,21.9247344 C12.6322621,21.9247344 9.88643387,26.566822 9.88643387,31.1072507 M12.7728677,34 L13.7771941,34 C13.7771941,30.3604101 13.7771941,24.8597577 33,24.8597577 L33,23.8532339 C14.3345952,23.8532339 12.7728677,28.8657223 12.7728677,34 M8.00432633,13.7497484 L7,13.7497484 C7,17.3047903 11.7876236,19.5604101 21.2333127,20.4994967 C11.7876236,21.4385834 7,23.6952097 7,27.2492451 L8.00432633,27.2492451 C8.00432633,24.9171295 11.2513133,21.0027586 33,21.0027586 L33,19.9962349 C11.2513133,19.9962349 8.00432633,16.0828705 8.00432633,13.7497484 M10.8907602,9.8927493 L9.88643387,9.8927493 C9.88643387,14.433178 12.6322621,19.0742591 33,19.0742591 L33,18.0677353 C13.5170735,18.0677353 10.8907602,13.9349487 10.8907602,9.8927493 M33,16.1392358 L33,17.1457596 C14.3345952,17.1457596 12.7728677,12.1332712 12.7728677,7 L13.7771941,7 C13.7771941,10.6395899 13.7771941,16.1392358 33,16.1392358\" id=\"Amazon-Kinesis_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Stream", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json index 99895571434..802e62b08ba 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json index bae5968c8fe..678fa3b0d13 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Alias.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Alias", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json index 068a07afac3..99d456dac44 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json index bfe7db797e7..1b0b04b14d5 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Grant.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Grant", diff --git a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json index 188bbacadea..3524aa308b0 100644 --- a/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json +++ b/server/meshmodel/aws-kms-controller/v1.0.13/v1.0.0/components/Key.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Key-Management-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M26.7306053,26.4969984 L30.7306053,26.4969984 L30.7306053,25.4969984 L26.7306053,25.4969984 L26.7306053,26.4969984 Z M21.7306053,26.4969984 L25.7306053,26.4969984 L25.7306053,25.4969984 L21.7306053,25.4969984 L21.7306053,26.4969984 Z M16.7306053,26.4969984 L20.7306053,26.4969984 L20.7306053,25.4969984 L16.7306053,25.4969984 L16.7306053,26.4969984 Z M22.7306053,22.4969984 C22.7306053,21.9459984 23.1796053,21.4969984 23.7306053,21.4969984 C24.2826053,21.4969984 24.7306053,21.9459984 24.7306053,22.4969984 C24.7306053,23.0479984 24.2826053,23.4969984 23.7306053,23.4969984 C23.1796053,23.4969984 22.7306053,23.0479984 22.7306053,22.4969984 L22.7306053,22.4969984 Z M25.7306053,22.4969984 C25.7306053,21.3939984 24.8336053,20.4969984 23.7306053,20.4969984 C22.6286053,20.4969984 21.7306053,21.3939984 21.7306053,22.4969984 C21.7306053,23.5999984 22.6286053,24.4969984 23.7306053,24.4969984 C24.8336053,24.4969984 25.7306053,23.5999984 25.7306053,22.4969984 L25.7306053,22.4969984 Z M19.7306053,22.4969984 C19.7306053,23.0479984 19.2826053,23.4969984 18.7306053,23.4969984 C18.1796053,23.4969984 17.7306053,23.0479984 17.7306053,22.4969984 C17.7306053,21.9459984 18.1796053,21.4969984 18.7306053,21.4969984 C19.2826053,21.4969984 19.7306053,21.9459984 19.7306053,22.4969984 L19.7306053,22.4969984 Z M16.7306053,22.4969984 C16.7306053,23.5999984 17.6286053,24.4969984 18.7306053,24.4969984 C19.8336053,24.4969984 20.7306053,23.5999984 20.7306053,22.4969984 C20.7306053,21.3939984 19.8336053,20.4969984 18.7306053,20.4969984 C17.6286053,20.4969984 16.7306053,21.3939984 16.7306053,22.4969984 L16.7306053,22.4969984 Z M33.7306053,15.9969984 L33.7306053,28.9969984 C33.7306053,29.2729984 33.5076053,29.4969984 33.2306053,29.4969984 L16.7306053,29.4969984 L16.7306053,28.4969984 L32.7306053,28.4969984 L32.7306053,16.4969984 L20.7306053,16.4969984 L20.7306053,15.4969984 L33.2306053,15.4969984 C33.5076053,15.4969984 33.7306053,15.7209984 33.7306053,15.9969984 L33.7306053,15.9969984 Z M14.0456053,19.0209984 C13.8396053,19.0879984 13.6996053,19.2799984 13.6996053,19.4969984 L13.6996053,31.2599984 L12.3956053,32.3229984 L11.2306053,30.3599984 L11.2306053,28.4969984 C11.2306053,28.3499984 11.1656053,28.2089984 11.0536053,28.1139984 L9.85560527,27.1079984 L11.0886053,25.8469984 C11.1806053,25.7529984 11.2306053,25.6279984 11.2306053,25.4969984 L11.2306053,24.4969984 C11.2306053,24.3639984 11.1786053,24.2359984 11.0836053,24.1429984 L9.85460527,22.9199984 L11.0596053,21.8739984 C11.1686053,21.7789984 11.2306053,21.6419984 11.2306053,21.4969984 L11.2306053,19.4969984 C11.2306053,19.2789984 11.0896053,19.0859984 10.8826053,19.0199984 C8.14060527,18.1519984 6.52460527,15.3079984 7.12460527,12.4039984 C7.55260527,10.3319984 9.14560527,8.67099843 11.1846053,8.17199843 C12.9146053,7.74499843 14.6946053,8.11699843 16.0636053,9.18899843 C17.4306053,10.2609984 18.2136053,11.8699984 18.2136053,13.6029984 C18.2136053,15.9229984 16.4216053,18.2519984 14.0456053,19.0209984 L14.0456053,19.0209984 Z M19.2136053,13.6029984 C19.2136053,11.5609984 18.2906053,9.66499843 16.6816053,8.40299843 C15.0706053,7.13999843 12.9826053,6.70399843 10.9456053,7.19999843 C8.53460527,7.79099843 6.65060527,9.75399843 6.14560527,12.2019984 C5.46760527,15.4839984 7.21260527,18.7049984 10.2306053,19.8519984 L10.2306053,21.2689984 L8.79360527,22.5179984 C8.68860527,22.6089984 8.62660527,22.7399984 8.62160527,22.8779984 C8.61660527,23.0179984 8.67060527,23.1519984 8.76960527,23.2499984 L10.2306053,24.7049984 L10.2306053,25.2929984 L8.76460527,26.7939984 C8.66660527,26.8929984 8.61560527,27.0289984 8.62260527,27.1679984 C8.62960527,27.3069984 8.69260527,27.4359984 8.79960527,27.5259984 L10.2306053,28.7299984 L10.2306053,30.4969984 C10.2306053,30.5869984 10.2556053,30.6749984 10.3016053,30.7519984 L11.8326053,33.3329984 C11.9066053,33.4579984 12.0316053,33.5439984 12.1756053,33.5699984 C12.2036053,33.5749984 12.2326053,33.5779984 12.2626053,33.5779984 C12.3766053,33.5779984 12.4886053,33.5389984 12.5786053,33.4649984 L14.5166053,31.8839984 C14.6326053,31.7889984 14.6996053,31.6469984 14.6996053,31.4969984 L14.6996053,19.8499984 C16.9966053,18.9559984 19.2136053,16.6009984 19.2136053,13.6029984 L19.2136053,13.6029984 Z M12.6056053,14.9039984 C11.8406053,14.9039984 11.2176053,14.2809984 11.2176053,13.5159984 C11.2176053,12.7489984 11.8406053,12.1259984 12.6056053,12.1259984 C13.3726053,12.1259984 13.9956053,12.7489984 13.9956053,13.5159984 C13.9956053,14.2809984 13.3726053,14.9039984 12.6056053,14.9039984 L12.6056053,14.9039984 Z M12.6056053,11.1259984 C11.2886053,11.1259984 10.2176053,12.1979984 10.2176053,13.5159984 C10.2176053,14.8319984 11.2886053,15.9039984 12.6056053,15.9039984 C13.9236053,15.9039984 14.9956053,14.8319984 14.9956053,13.5159984 C14.9956053,12.1979984 13.9236053,11.1259984 12.6056053,11.1259984 L12.6056053,11.1259984 Z\" id=\"AWS-Key-Management-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Key", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json index 9a67efa4034..7bb30a69153 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json index 2bb0c115e03..abe8442587d 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Alias.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Alias", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json index 91ab140d9c9..53e0b16b2c6 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/CodeSigningConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "CodeSigningConfig", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json index a7c76a03958..22c431496f2 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/EventSourceMapping.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EventSourceMapping", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json index f5e3cd6d436..d78ca4d527e 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json index ad480e8dcec..9f76059ebc4 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Function.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Function", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json index 0754a7c768b..33dfe7a4543 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/FunctionURLConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FunctionURLConfig", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json index 8dc88d237e4..4f0a2fb3647 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/LayerVersion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LayerVersion", diff --git a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json index 40ba021feab..675996ddee9 100644 --- a/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json +++ b/server/meshmodel/aws-lambda-controller/v1.5.0/v1.0.0/components/Version.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ED7100", - "secondaryColor": "", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Compute\" fill=\"#ED7100\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Lambda_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3863762,33 L8.26957323,33 L15.032628,18.574 L18.0969223,25.014 L14.3863762,33 Z M15.4706649,17.202 C15.3891468,17.03 15.2172714,16.92 15.0286994,16.92 L15.0267351,16.92 C14.8391453,16.921 14.6672698,17.032 14.5857517,17.205 L7.04778408,33.285 C6.9751053,33.439 6.9859089,33.622 7.0762663,33.767 C7.16564155,33.912 7.32278485,34 7.49073175,34 L14.6967342,34 C14.8872704,34 15.0601281,33.889 15.1416462,33.714 L19.085943,25.225 C19.1497824,25.088 19.1488003,24.929 19.0839787,24.793 L15.4706649,17.202 Z M32.0178544,33 L26.1357842,33 L16.6669183,12.289 C16.5863824,12.113 16.4125426,12 16.2220063,12 L12.3700312,12 L12.3749419,7 L19.9237132,7 L29.3483826,27.71 C29.4289185,27.887 29.6037404,28 29.7942767,28 L32.0178544,28 L32.0178544,33 Z M32.5089272,27 L30.1085633,27 L20.6829118,6.29 C20.6023758,6.113 20.4275539,6 20.2370176,6 L11.8838691,6 C11.6127969,6 11.3927963,6.224 11.3927963,6.5 L11.3869034,12.5 C11.3869034,12.632 11.4389572,12.759 11.5312788,12.854 C11.6236005,12.947 11.7473509,13 11.8779762,13 L15.909684,13 L25.3775678,33.711 C25.4581038,33.887 25.6319435,34 25.8234619,34 L32.5089272,34 C32.7809815,34 33,33.776 33,33.5 L33,27.5 C33,27.224 32.7809815,27 32.5089272,27 L32.5089272,27 Z\" id=\"AWS-Lambda_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Version", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json index c2180d2ea08..3615ff7df97 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ACL.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ACL", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json index 282573c8e53..79d012c2d09 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json index 8d2a3dfe285..b75cb842b4d 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Cluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Cluster", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json index faddb2ea749..00a292029fa 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json index e737b854608..b6712519317 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/ParameterGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ParameterGroup", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json index 863b9e143c5..ec6ba3180eb 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/Snapshot.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Snapshot", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json index dee9d2a4498..9870e5236f7 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/SubnetGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "SubnetGroup", diff --git a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json index e982fafd265..9963eac4f8e 100644 --- a/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json +++ b/server/meshmodel/aws-memorydb-controller/v1.0.2/v1.0.0/components/User.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-MemoryDB-for-Redis_32\" transform=\"translate(6.000000, 7.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M9.26,6.09 C4.393,6.09 1,4.749 1,3.545 C1,2.341 4.393,1 9.26,1 C14.077,1 17.06,2.321 17.06,3.545 C17.06,4.769 14.077,6.09 9.26,6.09 L9.26,6.09 Z M16.943,13.591 C17.892,13.591 18.838,13.697 19.755,13.906 L19.978,12.931 C19.33,12.783 18.667,12.701 18,12.65 L18,3.991 C18.036,3.846 18.06,3.698 18.06,3.545 C18.06,1.425 14.524,0 9.26,0 C4.658,0 0,1.218 0,3.545 L0,23.163 C0,24.577 1.534,25.718 4.321,26.377 L4.551,25.403 C2.361,24.886 1,24.027 1,23.163 L1,19.024 C1.649,19.439 2.477,19.804 3.499,20.088 L3.767,19.124 C2.498,18.771 1.544,18.294 1,17.771 L1,12.018 C2.589,13.055 5.351,13.754 8.627,13.89 L8.668,12.891 C5.12,12.744 2.161,11.91 1,10.757 L1,5.232 C2.612,6.455 5.946,7.09 9.26,7.09 C12.816,7.09 15.579,6.438 17,5.362 L17,12.594 C16.981,12.594 16.962,12.591 16.943,12.591 C11.874,12.591 7.247,15.382 4.867,19.874 L5.75,20.341 C7.956,16.178 12.245,13.591 16.943,13.591 L16.943,13.591 Z M23.411,15.372 C22.613,14.896 21.761,14.507 20.879,14.218 L21.192,13.268 C22.143,13.58 23.062,13.999 23.923,14.513 L23.411,15.372 Z M18.614,26.074 C18.549,25.468 18.317,24.917 17.956,24.464 L23.416,19.301 C25.23,21.021 26.358,23.503 26.488,26.074 L18.614,26.074 Z M15.505,24.263 C16.573,24.263 17.453,25.051 17.614,26.074 L13.396,26.074 C13.557,25.051 14.437,24.263 15.505,24.263 L15.505,24.263 Z M24.141,18.616 L26.023,16.837 L25.335,16.111 L17.223,23.78 C16.729,23.456 16.139,23.263 15.505,23.263 C13.886,23.263 12.565,24.499 12.396,26.074 L6.901,26.074 C7.157,20.818 11.452,16.622 16.695,16.622 C18.105,16.622 19.466,16.915 20.739,17.492 L21.153,16.581 C19.748,15.944 18.248,15.622 16.695,15.622 C10.736,15.622 5.888,20.535 5.888,26.574 L5.888,27.074 L27.5,27.074 L27.5,26.574 C27.5,23.576 26.244,20.632 24.141,18.616 L24.141,18.616 Z\" id=\"Fill-6\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json index 29ed2cbe597..6e38334aaea 100644 --- a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json index 29f28f36048..3f9404b0900 100644 --- a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json +++ b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/Broker.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Broker", diff --git a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json index d50160ad916..4529594d7c6 100644 --- a/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-mq-controller/v0.0.34/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-MQ_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M9.726,25.2816449 L8.863,25.7860948 C8.458,25.0972117 8.119,24.3664572 7.854,23.6127732 L8.797,23.2827873 C9.041,23.9756581 9.354,24.6485903 9.726,25.2816449 L9.726,25.2816449 Z M8.824,16.6372086 L7.882,16.300244 C8.136,15.5984007 8.455,14.9135054 8.83,14.2644997 L9.696,14.762968 C9.35,15.3601329 9.057,15.9911937 8.824,16.6372086 L8.824,16.6372086 Z M14.99,9.99860844 L14.58,9.08940236 C17.826,7.63686588 21.626,7.63686588 24.872,9.08940236 L24.462,9.99860844 C21.478,8.66271354 17.974,8.66271354 14.99,9.99860844 L14.99,9.99860844 Z M29.756,14.762968 L30.622,14.2644997 C30.998,14.9164962 31.318,15.6013916 31.569,16.301241 L30.627,16.6372086 C30.396,15.9931876 30.103,15.3631237 29.756,14.762968 L29.756,14.762968 Z M30.655,23.2827873 L31.598,23.6127732 C31.341,24.3425308 31.013,25.0543434 30.622,25.7292694 L29.756,25.2308012 C30.116,24.6097097 30.418,23.9537255 30.655,23.2827873 L30.655,23.2827873 Z M24.462,29.9961576 L24.872,30.9053637 C23.248,31.6321304 21.517,32 19.726,32 C17.935,32 16.204,31.6321304 14.58,30.9053637 L14.99,29.9961576 C17.976,31.3320525 21.476,31.3320525 24.462,29.9961576 L24.462,29.9961576 Z M11.5,29.4289008 C10.673,29.4289008 10,28.7579625 10,27.933496 C10,27.1090295 10.673,26.4380913 11.5,26.4380913 C12.328,26.4380913 13,27.1090295 13,27.933496 C13,28.7579625 12.328,29.4289008 11.5,29.4289008 L11.5,29.4289008 Z M11.5,25.4411548 C10.122,25.4411548 9,26.5597175 9,27.933496 C9,29.3082715 10.122,30.4258373 11.5,30.4258373 C12.879,30.4258373 14,29.3082715 14,27.933496 C14,26.5597175 12.879,25.4411548 11.5,25.4411548 L11.5,25.4411548 Z M27.5,29.4289008 C26.673,29.4289008 26,28.7579625 26,27.933496 C26,27.1090295 26.673,26.4380913 27.5,26.4380913 C28.328,26.4380913 29,27.1090295 29,27.933496 C29,28.7579625 28.328,29.4289008 27.5,29.4289008 L27.5,29.4289008 Z M27.5,25.4411548 C26.122,25.4411548 25,26.5597175 25,27.933496 C25,29.3082715 26.122,30.4258373 27.5,30.4258373 C28.879,30.4258373 30,29.3082715 30,27.933496 C30,26.5597175 28.879,25.4411548 27.5,25.4411548 L27.5,25.4411548 Z M31.5,21.4534088 C30.673,21.4534088 30,20.7824705 30,19.9580041 C30,19.1335376 30.673,18.4625993 31.5,18.4625993 C32.328,18.4625993 33,19.1335376 33,19.9580041 C33,20.7824705 32.328,21.4534088 31.5,21.4534088 L31.5,21.4534088 Z M31.5,17.4656628 C30.122,17.4656628 29,18.5842256 29,19.9580041 C29,21.3327795 30.122,22.4503453 31.5,22.4503453 C32.879,22.4503453 34,21.3327795 34,19.9580041 C34,18.5842256 32.879,17.4656628 31.5,17.4656628 L31.5,17.4656628 Z M11.5,10.5658653 C12.328,10.5658653 13,11.2368036 13,12.0612701 C13,12.8857365 12.328,13.5566748 11.5,13.5566748 C10.673,13.5566748 10,12.8857365 10,12.0612701 C10,11.2368036 10.673,10.5658653 11.5,10.5658653 L11.5,10.5658653 Z M11.5,14.5536113 C12.879,14.5536113 14,13.4350485 14,12.0612701 C14,10.6864946 12.879,9.56892881 11.5,9.56892881 C10.122,9.56892881 9,10.6864946 9,12.0612701 C9,13.4350485 10.122,14.5536113 11.5,14.5536113 L11.5,14.5536113 Z M27.5,10.5658653 C28.328,10.5658653 29,11.2368036 29,12.0612701 C29,12.8857365 28.328,13.5566748 27.5,13.5566748 C26.673,13.5566748 26,12.8857365 26,12.0612701 C26,11.2368036 26.673,10.5658653 27.5,10.5658653 L27.5,10.5658653 Z M27.5,14.5536113 C28.879,14.5536113 30,13.4350485 30,12.0612701 C30,10.6864946 28.879,9.56892881 27.5,9.56892881 C26.122,9.56892881 25,10.6864946 25,12.0612701 C25,13.4350485 26.122,14.5536113 27.5,14.5536113 L27.5,14.5536113 Z M8.5,21.4534088 C7.673,21.4534088 7,20.7824705 7,19.9580041 C7,19.1335376 7.673,18.4625993 8.5,18.4625993 C9.328,18.4625993 10,19.1335376 10,19.9580041 C10,20.7824705 9.328,21.4534088 8.5,21.4534088 L8.5,21.4534088 Z M16.0020589,20.0228049 C16.004,19.8902124 15.955,19.7626045 15.862,19.6678955 L14.36,18.1166623 L13.641,18.8085363 L14.316,19.5063918 L10.955,19.5063918 C10.741,18.3479516 9.724,17.4656628 8.5,17.4656628 C7.122,17.4656628 6,18.5842256 6,19.9580041 C6,21.3327795 7.122,22.4503453 8.5,22.4503453 C9.691,22.4503453 10.685,21.6159094 10.936,20.5033283 L14.27,20.5033283 L13.654,21.0945117 L14.347,21.8133029 L15.849,20.3727296 C15.945,20.2810115 15.999,20.1553975 16.0020589,20.0228049 L16.0020589,20.0228049 Z M25.658,21.0905239 L26.284,20.5033283 L24,20.5033283 L24,19.5063918 L26.34,19.5063918 L25.647,18.8155148 L26.354,18.1106807 L27.901,19.6519445 C27.997,19.7476504 28.049,19.8772522 28.047,20.0118386 C28.045,20.147422 27.989,20.2750299 27.89,20.367745 L26.343,21.8162937 L25.658,21.0905239 Z M22.414,22.8222026 C21.664,22.5191339 20.841,22.3566333 20,22.3566333 C19.16,22.3566333 18.337,22.5191339 17.587,22.8222026 C18.255,21.0556311 18.255,18.8613739 17.587,17.0948024 C19.087,17.7009398 20.914,17.7009398 22.414,17.0948024 C21.746,18.8613739 21.746,21.0556311 22.414,22.8222026 L22.414,22.8222026 Z M24.354,15.8247053 C24.452,15.7270056 24.5,15.5993977 24.5,15.4717898 C24.5,15.3441819 24.452,15.2165741 24.354,15.1198712 C24.159,14.9244717 23.842,14.9244717 23.647,15.1198712 C22.727,16.0370528 21.398,16.5624383 20,16.5624383 C18.603,16.5624383 17.274,16.0370528 16.354,15.1198712 C16.159,14.9244717 15.842,14.9244717 15.647,15.1198712 C15.549,15.2165741 15.5,15.3441819 15.5,15.4717898 C15.5,15.5993977 15.549,15.7270056 15.647,15.8247053 C17.584,17.7557713 17.584,22.1602368 15.647,24.0922997 C15.549,24.1890025 15.5,24.3166104 15.5,24.4442183 C15.5,24.5718262 15.549,24.699434 15.647,24.7971338 C15.842,24.9915364 16.159,24.9915364 16.354,24.7971338 C17.274,23.8799522 18.603,23.3535698 20,23.3535698 C21.398,23.3535698 22.727,23.8799522 23.647,24.7971338 C23.745,24.8938366 23.872,24.9426865 24,24.9426865 C24.128,24.9426865 24.256,24.8938366 24.354,24.7971338 C24.452,24.699434 24.5,24.5718262 24.5,24.4442183 C24.5,24.3166104 24.452,24.1890025 24.354,24.0922997 C22.416,22.1602368 22.416,17.7557713 24.354,15.8247053 L24.354,15.8247053 Z\" id=\"Amazon-MQ-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json b/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json index c05f5bf4958..f8b72ca51e9 100644 --- a/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json +++ b/server/meshmodel/aws-node-termination-handler-2/0.2.0/v1.0.0/components/Terminator.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json index bc79d0fe26a..3a79e338eb8 100644 --- a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json index 7dcb4ec7387..f5acbd3307e 100644 --- a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json +++ b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/Domain.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json index 736841ffbb9..ebe2aca2d7b 100644 --- a/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-opensearchservice-controller/v0.0.25/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json index b44d565285f..ab2ee974a50 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json index 213cf3f26a7..1bfd372a22c 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/AlertManagerDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AlertManagerDefinition", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json index effa10ab906..fdecb2cbf2f 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json index 642139dce4b..0c7bc5f837f 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/LoggingConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "LoggingConfiguration", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json index 7eba78ff967..d414d6a1d0d 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/RuleGroupsNamespace.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RuleGroupsNamespace", diff --git a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json index 9455d8e592c..f3e7a74d377 100644 --- a/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json +++ b/server/meshmodel/aws-prometheusservice-controller/v1.2.11/v1.0.0/components/Workspace.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Management-Governance\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Managed-Service-for-Prometheus_32\" transform=\"translate(10.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M16.5,9 C15.673,9 15,8.327 15,7.5 C15,6.673 15.673,6 16.5,6 C17.327,6 18,6.673 18,7.5 C18,8.327 17.327,9 16.5,9 L16.5,9 Z M11.5,4 C10.673,4 10,3.327 10,2.5 C10,1.673 10.673,1 11.5,1 C12.327,1 13,1.673 13,2.5 C13,3.327 12.327,4 11.5,4 L11.5,4 Z M8.5,13 C7.673,13 7,12.327 7,11.5 C7,10.673 7.673,10 8.5,10 C9.327,10 10,10.673 10,11.5 C10,12.327 9.327,13 8.5,13 L8.5,13 Z M2.5,8 C1.673,8 1,7.327 1,6.5 C1,5.673 1.673,5 2.5,5 C3.327,5 4,5.673 4,6.5 C4,7.327 3.327,8 2.5,8 L2.5,8 Z M16.5,5 C15.991,5 15.519,5.154 15.123,5.417 L13.584,3.876 C13.846,3.481 14,3.009 14,2.5 C14,1.122 12.879,0 11.5,0 C10.121,0 9,1.122 9,2.5 C9,3.423 9.508,4.222 10.254,4.655 L8.796,9.03 C8.697,9.018 8.602,9 8.5,9 C7.736,9 7.06,9.352 6.601,9.894 L4.584,7.876 C4.846,7.481 5,7.009 5,6.5 C5,5.122 3.879,4 2.5,4 C1.121,4 0,5.122 0,6.5 C0,7.878 1.121,9 2.5,9 C3.009,9 3.481,8.846 3.877,8.583 L6.107,10.814 C6.045,11.034 6,11.261 6,11.5 C6,12.878 7.121,14 8.5,14 C9.879,14 11,12.878 11,11.5 C11,10.577 10.492,9.778 9.746,9.345 L11.204,4.97 C11.303,4.982 11.398,5 11.5,5 C12.009,5 12.481,4.846 12.877,4.583 L14.416,6.124 C14.154,6.519 14,6.991 14,7.5 C14,8.878 15.121,10 16.5,10 C17.879,10 19,8.878 19,7.5 C19,6.122 17.879,5 16.5,5 L16.5,5 Z M13.25,19 L6.75,19 L4.5,16 L15.5,16 L13.25,19 Z M11.109,27 L8.891,27 L7.141,20 L12.859,20 L11.109,27 Z M16.5,15 L3.5,15 C3.311,15 3.138,15.107 3.053,15.276 C2.968,15.446 2.986,15.648 3.1,15.8 L6.039,19.719 L8.015,27.621 C8.07,27.844 8.271,28 8.5,28 L11.5,28 C11.729,28 11.93,27.844 11.985,27.621 L13.961,19.719 L16.9,15.8 C17.014,15.648 17.032,15.446 16.947,15.276 C16.862,15.107 16.689,15 16.5,15 L16.5,15 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Workspace", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json index 688bd301fa8..b11d460ec25 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json index 8158829ca66..1ba5cdd941a 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBCluster", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json index 0018edee293..654bef73eff 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBClusterParameterGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBClusterParameterGroup", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json index 880f66f9ca0..408de8a0f2a 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBInstance", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json index 6a16b36bda0..f90554c191e 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBParameterGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBParameterGroup", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json index 708834ac420..075e986e492 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBProxy", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json index f574c059fbf..ce97b6c4209 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/DBSubnetGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DBSubnetGroup", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json index c9b883c24d4..471113eddff 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json index 9d871a4344f..5611af7d18f 100644 --- a/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json +++ b/server/meshmodel/aws-rds-controller/v1.2.5/v1.0.0/components/GlobalCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#C925D1", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-RDS_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M11.854,28.854 L7.708,33 L10.5,33 L10.5,34 L6.5,34 C6.224,34 6,33.777 6,33.5 L6,29.5 L7,29.5 L7,32.293 L11.147,28.147 L11.854,28.854 Z M33,29.5 L34,29.5 L34,33.5 C34,33.777 33.777,34 33.5,34 L29.5,34 L29.5,33 L32.293,33 L28.147,28.854 L28.854,28.147 L33,32.293 L33,29.5 Z M34,6.5 L34,10.5 L33,10.5 L33,7.708 L28.854,11.854 L28.147,11.147 L32.293,7 L29.5,7 L29.5,6 L33.5,6 C33.777,6 34,6.224 34,6.5 L34,6.5 Z M7,10.5 L6,10.5 L6,6.5 C6,6.224 6.224,6 6.5,6 L10.5,6 L10.5,7 L7.527,7 L11.846,11.14 L11.155,11.861 L7,7.88 L7,10.5 Z M32.726,19.4 C32.726,17.842 30.92,16.3 27.896,15.277 L28.216,14.33 C31.718,15.515 33.726,17.363 33.726,19.4 C33.726,21.437 31.718,23.286 28.216,24.471 L27.896,23.523 C30.92,22.5 32.726,20.958 32.726,19.4 L32.726,19.4 Z M7.737,19.4 C7.737,20.892 9.427,22.393 12.258,23.414 L11.918,24.354 C8.625,23.167 6.737,21.361 6.737,19.4 C6.737,17.439 8.625,15.633 11.918,14.445 L12.258,15.386 C9.427,16.407 7.737,17.908 7.737,19.4 L7.737,19.4 Z M20.023,15.719 C16.887,15.719 15.132,14.92 15.106,14.594 C15.132,14.268 16.887,13.469 20.023,13.469 C23.156,13.469 24.913,14.267 24.94,14.594 C24.913,14.92 23.156,15.719 20.023,15.719 L20.023,15.719 Z M20.023,19.274 C16.841,19.274 15.106,18.348 15.106,17.872 L15.106,15.842 C16.241,16.437 18.175,16.719 20.023,16.719 C21.871,16.719 23.805,16.437 24.94,15.842 L24.94,17.872 C24.94,18.348 23.205,19.274 20.023,19.274 L20.023,19.274 Z M20.023,23.011 C16.841,23.011 15.106,22.084 15.106,21.608 L15.106,19.265 C16.225,19.93 18.129,20.274 20.023,20.274 C21.917,20.274 23.821,19.93 24.94,19.265 L24.94,21.608 C24.94,22.084 23.205,23.011 20.023,23.011 L20.023,23.011 Z M20.023,26.29 C16.841,26.29 15.106,25.375 15.106,24.905 L15.106,23.001 C16.225,23.667 18.129,24.011 20.023,24.011 C21.917,24.011 23.821,23.667 24.94,23.001 L24.94,24.905 C24.94,25.375 23.205,26.29 20.023,26.29 L20.023,26.29 Z M20.023,12.469 C17.173,12.469 14.106,13.134 14.106,14.594 L14.106,24.905 C14.106,26.471 17.083,27.29 20.023,27.29 C22.963,27.29 25.94,26.471 25.94,24.905 L25.94,14.594 C25.94,13.134 22.873,12.469 20.023,12.469 L20.023,12.469 Z\" id=\"Amazon-RDS_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "GlobalCluster", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json index 7dd04ab9a03..e3a191d02cd 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json index 7183396ff6c..44ef1529598 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json index 9504c904545..ac0825d251a 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HealthCheck.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HealthCheck", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json index 5ec90dd12c4..a1d34ba20dd 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/HostedZone.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HostedZone", diff --git a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json index bef0a0aca82..8147866befc 100644 --- a/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json +++ b/server/meshmodel/aws-route53-controller/v0.0.14/v1.0.0/components/RecordSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "RecordSet", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json index 02291a9a2b7..012d76fccff 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json index 1cd0a2efff7..314d8054f5d 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json index 7103734c55a..bb97b8c6ec5 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ResolverEndpoint", diff --git a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json index 2e46ae16961..aef69c01dd7 100644 --- a/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json +++ b/server/meshmodel/aws-route53resolver-controller/v0.0.7/v1.0.0/components/ResolverRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#8C4FFF", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ResolverRule", diff --git a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json index c4873642fb6..0851ba1c46a 100644 --- a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7AA116", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Storage\" fill=\"#7AA116\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json index 66dfd11355f..12163b52263 100644 --- a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json +++ b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/Bucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7AA116", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Storage\" fill=\"#7AA116\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Bucket", diff --git a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json index 280aa76d2ed..293abfa2fbb 100644 --- a/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-s3-controller/v1.0.12/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7AA116", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Storage\" fill=\"#7AA116\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-Simple-Storage-Service_32\" transform=\"translate(7.000200, 6.000100)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M23.532,15.391 L23.729,13.932 C25.821,15.131 25.864,15.626 25.8630149,15.64 C25.859,15.643 25.509,15.923 23.532,15.391 L23.532,15.391 Z M22.564,15.103 C19.722,14.206 15.904,12.531 13.723,11.504 C13.723,11.497 13.727,11.491 13.727,11.484 C13.727,10.821 13.187,10.281 12.524,10.281 C11.861,10.281 11.321,10.821 11.321,11.484 C11.321,12.148 11.861,12.687 12.524,12.687 C12.814,12.687 13.07,12.571 13.278,12.4 C14.547,12.994 19.075,15.076 22.428,16.113 L21.249,24.85 C21.249,25.716 17.575,27 12.5,27 C7.425,27 3.751,25.716 3.746,24.784 L1.283,6.563 C3.458,8.155 8.074,9 12.5,9 C16.926,9 21.543,8.155 23.718,6.563 L22.564,15.103 Z M1.003,4.489 C1.032,3.609 5.104,1 12.5,1 C19.895,1 23.97,3.609 24,4.489 L24,4.603 C23.81,6.231 19.137,8 12.5,8 C5.863,8 1.209,6.231 1.018,4.604 L1.003,4.489 Z M25,4.5 C25,2.665 20.131,0 12.5,0 C4.869,0 0,2.665 0,4.5 L0,4.567 L2.751,24.85 C2.751,26.896 7.773,28 12.5,28 C17.226,28 22.249,26.896 22.244,24.917 L23.396,16.39 C24.217,16.604 24.881,16.718 25.392,16.718 C25.985,16.718 26.386,16.574 26.628,16.285 C26.827,16.047 26.903,15.76 26.845,15.454 C26.708,14.716 25.797,13.919 23.89,12.87 L23.869,12.896 L25,4.567 L25,4.5 Z\" id=\"Amazon-Simple-Storage-Service-Icon_32_Squid\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json index 04cbb62d7a2..a9eaadbfce4 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json index 972a77c0686..2c50af0106e 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/App.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "App", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json index b534acf0722..1f89dcb8dfa 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/DataQualityJobDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "DataQualityJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json index 6a04aef8721..44e2eaeac51 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Domain.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Domain", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json index 7db6a2494eb..0d39a3015a8 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Endpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Endpoint", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json index 8d87f96e5f9..66a6a7d7c0e 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/EndpointConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "EndpointConfig", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json index 5f6d1d9e101..0b6fe2f4dc6 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FeatureGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FeatureGroup", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json index 986f337a3b9..3fed9465804 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json index a188ab2c563..64f9bd8e7e9 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/HyperParameterTuningJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "HyperParameterTuningJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json index 860de130697..8d213b5197d 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/InferenceComponent.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#01A88D", + "primaryColor": "", "secondaryColor": "", "shape": "rectangle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "InferenceComponent", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json index 7fe40ab071e..d9281492089 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Model.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Model", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json index 1d13f405d61..db7781d18a2 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelBiasJobDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelBiasJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json index 9eaf7e8f91e..abdcdc9ca09 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelExplainabilityJobDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelExplainabilityJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json index eae882c8f1c..877f860a79b 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelPackage", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json index e4c17a5e65a..cb8f74b6ea8 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelPackageGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelPackageGroup", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json index 69a2d47ed83..5b8cfa368cc 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ModelQualityJobDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModelQualityJobDefinition", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json index be6ba784587..91976495ab6 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/MonitoringSchedule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MonitoringSchedule", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json index 3494d8d774a..cfdfdb7a675 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NotebookInstance", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json index 2c51562fa5f..78d7b2472a3 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/NotebookInstanceLifecycleConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "NotebookInstanceLifecycleConfig", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json index 7ac88cdc890..149866d0828 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/Pipeline.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Pipeline", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json index db6256a3e7f..e1eeacc16d8 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/PipelineExecution.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PipelineExecution", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json index 76e9ff3276c..baf8905967c 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/ProcessingJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ProcessingJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json index fb352b0de47..a4dc4839dce 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TrainingJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TrainingJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json index 7379abfca69..2cb129e49f0 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/TransformJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "TransformJob", diff --git a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json index a75c876ae20..e2373e4e801 100644 --- a/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json +++ b/server/meshmodel/aws-sagemaker-controller/v1.2.11/v1.0.0/components/UserProfile.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#01A88D", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Machine-Learning\" fill=\"#01A88D\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Service/32/Amazon-SageMaker-Studio-Lab_32\" transform=\"translate(6.000000, 6.000000)\" fill=\"#FFFFFF\"\u003e \u003cpath d=\"M18,21.0722264 L27,21.0722264 L27,7.07222639 L18,7.07222639 L18,21.0722264 Z M17,21.0722264 L17,7.07222639 L15,7.07222639 L15,9.07222639 L16,9.07222639 L16,10.0722264 L15,10.0722264 L15,13.0722264 L16,13.0722264 L16,14.0722264 L15,14.0722264 L15,17.0722264 L16,17.0722264 L16,18.0722264 L15,18.0722264 L15,21.0722264 L17,21.0722264 Z M28,6.57222639 L28,21.5722264 C28,21.8482264 27.776,22.0722264 27.5,22.0722264 L14.5,22.0722264 C14.224,22.0722264 14,21.8482264 14,21.5722264 L14,18.0722264 L13,18.0722264 L13,17.0722264 L14,17.0722264 L14,14.0722264 L13,14.0722264 L13,13.0722264 L14,13.0722264 L14,10.0722264 L13,10.0722264 L13,9.07222639 L14,9.07222639 L14,6.57222639 C14,6.29622639 14.224,6.07222639 14.5,6.07222639 L27.5,6.07222639 C27.776,6.07222639 28,6.29622639 28,6.57222639 L28,6.57222639 Z M14,23.0722264 L15,23.0722264 L15,25.5722264 C15,25.7612264 14.892,25.9342264 14.724,26.0192264 L10.724,28.0192264 C10.653,28.0542264 10.576,28.0722264 10.5,28.0722264 C10.414,28.0722264 10.329,28.0502264 10.252,28.0062264 L3.252,24.0062264 C3.096,23.9172264 3,23.7512264 3,23.5722264 L3,18.9002264 L0.273,17.5182264 C0.105,17.4332264 0,17.2602264 0,17.0722264 L0,10.5722264 C0,10.4052264 0.084,10.2492264 0.223,10.1562264 L3,8.30422639 L3,4.07222639 C3,3.89022639 3.1,3.72222639 3.259,3.63422639 L9.745,0.0612263904 C9.885,-0.0137736096 10.052,-0.0207736096 10.195,0.0452263904 L14.709,2.11722639 C14.886,2.19922639 15,2.37722639 15,2.57222639 L15,5.07222639 L14,5.07222639 L14,2.89322639 L10.007,1.05922639 L9,1.61322639 L9,6.07222639 L8,6.07222639 L8,2.16422639 L4,4.36722639 L4,7.79522639 L7.478,9.96922639 L10,8.27822639 L10,6.07222639 L11,6.07222639 L11,8.54522639 C11,8.71222639 10.917,8.86722639 10.778,8.96122639 L8,10.8222264 L8,13.0722264 L11,13.0722264 L11,14.0722264 L7.5,14.0722264 C7.224,14.0722264 7,13.8482264 7,13.5722264 L7,10.8492264 L3.879,8.89822639 C3.85,8.93222639 3.815,8.96322639 3.777,8.98822639 L1,10.8392264 L1,13.5782264 L4.199,11.1722264 L4.801,11.9712264 L1,14.8302264 L1,16.7652264 L3.726,18.1472264 C3.747,18.1572264 3.756,18.1792264 3.775,18.1922264 L6.18,16.1882264 L6.82,16.9562264 L4,19.3062264 L4,23.2822264 L6.655,24.7992264 L8,23.6992264 L8,18.0722264 L9,18.0722264 L9,22.8802264 L11.684,20.6852264 L12.316,21.4592264 L7.585,25.3302264 L10.516,27.0052264 L14,25.2632264 L14,23.0722264 Z\" id=\"Fill-3\"\u003e\u003c/path\u003e \u003c/g\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "UserProfile", diff --git a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json index e87754ca534..05e2eae6e2b 100644 --- a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json index 48286a1b96f..1c0a12a91a4 100644 --- a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json index 6dd9c659144..6b80286720b 100644 --- a/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json +++ b/server/meshmodel/aws-secretsmanager-controller/v0.0.7/v1.0.0/components/Secret.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#DD344C", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Security-Identity-Compliance\" fill=\"#DD344C\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Secrets-Manager_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M21.08,22.12 C21.08,21.8 20.82,21.54 20.5,21.54 C20.18,21.54 19.92,21.8 19.92,22.12 C19.92,22.44 20.18,22.7 20.5,22.7 C20.82,22.7 21.08,22.44 21.08,22.12 L21.08,22.12 Z M22.08,22.12 C22.08,22.815 21.625,23.401 21,23.611 L21,25 L20,25 L20,23.611 C19.375,23.401 18.92,22.815 18.92,22.12 C18.92,21.249 19.629,20.54 20.5,20.54 C21.371,20.54 22.08,21.249 22.08,22.12 L22.08,22.12 Z M24.909,25.984 L24.909,24.998 L23,24.998 L23,23.998 L24.909,23.998 L24.909,21.986 L23,21.986 L23,20.986 L24.909,20.986 L24.909,20.012 L16.091,20.012 L16.091,25.984 L24.909,25.984 Z M16.971,19.012 L23.989,19.012 L23.989,17 C23.989,15.728 22.662,13.954 20.502,13.954 C18.314,13.954 16.971,15.728 16.971,17 L16.971,19.012 Z M24.989,17 L24.989,19.012 L25.409,19.012 C25.685,19.012 25.909,19.235 25.909,19.512 L25.909,26.484 C25.909,26.761 25.685,26.984 25.409,26.984 L15.591,26.984 C15.314,26.984 15.091,26.761 15.091,26.484 L15.091,19.512 C15.091,19.235 15.314,19.012 15.591,19.012 L15.971,19.012 L15.971,17 C15.971,15.086 17.832,12.954 20.502,12.954 C23.146,12.954 24.989,15.086 24.989,17 L24.989,17 Z M10.461,27.766 L11.271,27.18 C9.958,25.365 9.23,23.237 9.138,21 L11,21 L11,20 L9.139,20 C9.238,17.776 9.965,15.661 11.271,13.855 L10.461,13.269 C9.03,15.246 8.239,17.564 8.139,20 L7,20 L7,21 L8.138,21 C8.231,23.449 9.023,25.78 10.461,27.766 L10.461,27.766 Z M27.161,29.746 C25.352,31.056 23.23,31.783 21,31.878 L21,30 L20,30 L20,31.879 C17.769,31.783 15.647,31.056 13.837,29.746 L13.251,30.557 C15.232,31.991 17.558,32.782 20,32.879 L20,34 L21,34 L21,32.878 C23.442,32.782 25.767,31.99 27.747,30.556 L27.161,29.746 Z M13.837,11.289 C15.647,9.979 17.769,9.253 20,9.157 L20,11 L21,11 L21,9.157 C23.23,9.253 25.352,9.98 27.161,11.289 L27.747,10.479 C25.767,9.045 23.442,8.254 21,8.157 L21,7 L20,7 L20,8.157 C17.558,8.253 15.232,9.045 13.251,10.479 L13.837,11.289 Z M32.859,20 C32.76,17.563 31.968,15.245 30.538,13.269 L29.727,13.855 C31.033,15.66 31.76,17.775 31.859,20 L30,20 L30,21 L31.86,21 C31.768,23.237 31.041,25.366 29.727,27.18 L30.538,27.766 C31.975,25.781 32.768,23.45 32.86,21 L34,21 L34,20 L32.859,20 Z M28.413,13.311 L32.192,9.531 L31.485,8.824 L27.706,12.604 L28.413,13.311 Z M12.586,27.724 L8.806,31.504 L9.513,32.211 L13.293,28.431 L12.586,27.724 Z M15.048,14.341 L7.892,7.186 L7.185,7.893 L14.341,15.048 L15.048,14.341 Z M27.355,26.649 L33.812,33.106 L33.105,33.813 L26.648,27.356 L27.355,26.649 Z\" id=\"AWS-Secrets-Manager_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Secret", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json index e700526bcd9..3025af302c9 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/Activity.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Activity", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index 5f36fde5f41..06937163904 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json index 4ded577c2c0..bf83d3102ee 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json index 97856d67b7c..61234dd9bb1 100644 --- a/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json +++ b/server/meshmodel/aws-sfn-controller/v1.0.11/v1.0.0/components/StateMachine.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_AWS-Step-Functions_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M23,22 L33,22 L33,18 L23,18 L23,22 Z M33.5,17 L22.5,17 C22.224,17 22,17.224 22,17.5 L22,22.5 C22,22.776 22.224,23 22.5,23 L33.5,23 C33.776,23 34,22.776 34,22.5 L34,17.5 C34,17.224 33.776,17 33.5,17 L33.5,17 Z M22,31.5 C22,32.327 21.327,33 20.5,33 C19.673,33 19,32.327 19,31.5 C19,30.673 19.673,30 20.5,30 C21.327,30 22,30.673 22,31.5 L22,31.5 Z M7,24 L16,24 L16,22 L7,22 L7,24 Z M7,18 L7,16 L11,16 L12,16 L16,16 L16,18 L7,18 Z M19,8.5 C19,7.673 19.673,7 20.5,7 C21.327,7 22,7.673 22,8.5 C22,9.327 21.327,10 20.5,10 C19.673,10 19,9.327 19,8.5 L19,8.5 Z M28,27 L12,27 L12,25 L16.5,25 C16.776,25 17,24.776 17,24.5 L17,21.5 C17,21.224 16.776,21 16.5,21 L12,21 L12,19 L16.5,19 C16.776,19 17,18.776 17,18.5 L17,15.5 C17,15.224 16.776,15 16.5,15 L12,15 L12,13 L28,13 L28,15 L29,15 L29,12.5 C29,12.224 28.776,12 28.5,12 L21,12 L21,10.949 C22.14,10.717 23,9.707 23,8.5 C23,7.122 21.879,6 20.5,6 C19.121,6 18,7.122 18,8.5 C18,9.707 18.86,10.717 20,10.949 L20,12 L11.5,12 C11.224,12 11,12.224 11,12.5 L11,15 L6.5,15 C6.224,15 6,15.224 6,15.5 L6,18.5 C6,18.776 6.224,19 6.5,19 L11,19 L11,21 L6.5,21 C6.224,21 6,21.224 6,21.5 L6,24.5 C6,24.776 6.224,25 6.5,25 L11,25 L11,27.5 C11,27.776 11.224,28 11.5,28 L20,28 L20,29.051 C18.86,29.283 18,30.293 18,31.5 C18,32.878 19.121,34 20.5,34 C21.879,34 23,32.878 23,31.5 C23,30.293 22.14,29.283 21,29.051 L21,28 L28.5,28 C28.776,28 29,27.776 29,27.5 L29,25 L28,25 L28,27 Z\" id=\"AWS_Step_Functions_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "StateMachine", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json index 50b4872c9a8..cbac8c25c2e 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/AdoptedResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json index 2a0d2f9a4ab..c1c4b4a916a 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/FieldExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json index a26aafc0eb0..ccd510d7ae5 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PlatformApplication", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json index 82f14555e89..12bca398818 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/PlatformEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "PlatformEndpoint", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json index 0fa02c0a14d..2327b492cb4 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Subscription.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Subscription", diff --git a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json index e9e07eb1e25..bf91f30600c 100644 --- a/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json +++ b/server/meshmodel/aws-sns-controller/v1.0.11/v1.0.0/components/Topic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#E7157B", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Application-Integration\" fill=\"#E7157B\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M7.00991885,20.078 C7.00991885,19.475 7.50477908,18.985 8.11477006,18.985 C8.72274121,18.985 9.21861136,19.475 9.21861136,20.078 C9.21861136,20.681 8.72274121,21.171 8.11477006,21.171 C7.50477908,21.171 7.00991885,20.681 7.00991885,20.078 L7.00991885,20.078 Z M20.7761226,33 C14.8125518,33 9.64479711,28.375 8.4702615,22.136 C9.30041479,21.995 9.96090171,21.378 10.1598557,20.578 L13.1088188,20.578 L13.1088188,19.578 L10.1598557,19.578 C9.96292155,18.789 9.31859333,18.176 8.50560866,18.024 C9.72054103,12.252 14.8377998,8 20.7761226,8 C23.708927,8 26.1297024,8.643 27.9697746,9.911 L28.5454283,9.09 C26.53367,7.703 23.9189901,7 20.7761226,7 C14.2661858,7 8.67224527,11.726 7.468422,18.096 C6.61908025,18.368 6,19.149 6,20.078 C6,20.994 6.60191163,21.766 7.431055,22.049 C8.59145176,28.894 14.2389179,34 20.7761226,34 C24.0613886,34 27.5637872,32.333 29.5624166,30.906 L28.972624,30.095 C26.9457169,31.541 23.6261136,33 20.7761226,33 L20.7761226,33 Z M14.7893237,18.242 C15.9002344,18.516 17.312101,18.563 18.1321551,18.563 C18.9653381,18.563 20.4034626,18.516 21.5335618,18.243 L19.1329847,23.257 C19.1016772,23.324 19.0845086,23.397 19.0845086,23.472 L19.0845086,25.796 L17.1282958,26.711 L17.1282958,23.472 C17.1282958,23.401 17.1121371,23.33 17.0838593,23.266 L14.7893237,18.242 Z M18.1321551,16.485 C20.4458792,16.485 21.6860595,16.796 22.0829576,17.005 C21.6658611,17.239 20.3378179,17.563 18.1321551,17.563 C15.9487106,17.563 14.6499549,17.236 14.2601262,17.005 C14.6307665,16.799 15.8416592,16.485 18.1321551,16.485 L18.1321551,16.485 Z M16.3526781,27.923 C16.4344815,27.974 16.528404,28 16.6233363,28 C16.6970604,28 16.7697746,27.985 16.8384491,27.953 L19.8055906,26.565 C19.9823264,26.482 20.0944274,26.306 20.0944274,26.113 L20.0944274,23.584 L23.0029937,17.51 C23.1211542,17.361 23.1918485,17.193 23.1918485,17 C23.1918485,15.748 20.4408296,15.485 18.1321551,15.485 C15.8658972,15.485 13.1633544,15.748 13.1633544,17 C13.1633544,17.19 13.230009,17.355 13.3431199,17.502 L16.1183769,23.579 L16.1183769,27.5 C16.1183769,27.672 16.2062399,27.831 16.3526781,27.923 L16.3526781,27.923 Z M30.876321,27 C31.4842922,27 31.9801623,27.491 31.9801623,28.093 C31.9801623,28.696 31.4842922,29.186 30.876321,29.186 C30.2673399,29.186 29.7724797,28.696 29.7724797,28.093 C29.7724797,27.491 30.2673399,27 30.876321,27 L30.876321,27 Z M30.876321,10.97 C31.4842922,10.97 31.9801623,11.46 31.9801623,12.063 C31.9801623,12.665 31.4842922,13.156 30.876321,13.156 C30.2673399,13.156 29.7724797,12.665 29.7724797,12.063 C29.7724797,11.46 30.2673399,10.97 30.876321,10.97 L30.876321,10.97 Z M31.8862399,18.985 C32.494211,18.985 32.9900812,19.475 32.9900812,20.078 C32.9900812,20.681 32.494211,21.171 31.8862399,21.171 C31.2772588,21.171 30.7823986,20.681 30.7823986,20.078 C30.7823986,19.475 31.2772588,18.985 31.8862399,18.985 L31.8862399,18.985 Z M27.2789901,20.578 L29.8401443,20.578 C30.0683859,21.49 30.8944995,22.171 31.8862399,22.171 C33.0516862,22.171 34,21.232 34,20.078 C34,18.924 33.0516862,17.985 31.8862399,17.985 C30.8944995,17.985 30.0683859,18.666 29.8401443,19.578 L27.2789901,19.578 L27.2789901,12.563 L28.8302254,12.563 C29.0584671,13.475 29.8845807,14.156 30.876321,14.156 C32.0417674,14.156 32.9900812,13.217 32.9900812,12.063 C32.9900812,10.909 32.0417674,9.97 30.876321,9.97 C29.8845807,9.97 29.0584671,10.651 28.8302254,11.563 L26.7740307,11.563 C26.4952931,11.563 26.2690712,11.786 26.2690712,12.063 L26.2690712,19.578 L23.2080072,19.578 L23.2080072,20.578 L26.2690712,20.578 L26.2690712,28.093 C26.2690712,28.37 26.4952931,28.593 26.7740307,28.593 L28.8302254,28.593 C29.0584671,29.505 29.8845807,30.186 30.876321,30.186 C32.0417674,30.186 32.9900812,29.247 32.9900812,28.093 C32.9900812,26.939 32.0417674,26 30.876321,26 C29.8845807,26 29.0584671,26.681 28.8302254,27.593 L27.2789901,27.593 L27.2789901,20.578 Z\" id=\"AWS-Simple-Notification-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Topic", diff --git a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json index 0e455578188..5f1a8987230 100644 --- a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json +++ b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/AdoptedResource.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", + "primaryColor": "#E7157B", "secondaryColor": "", - "shape": "round-rectangle", + "shape": "rectangle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23295_2989)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#E7157B\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3422 22.3494L15.8467 20.9061C15.9428 20.8142 15.9969 20.6872 15.9999 20.5553C16.0019 20.4224 15.9518 20.2934 15.8597 20.1985L14.3552 18.6432L13.635 19.3379L14.3112 20.0375H11.9913V21.037H14.2651L13.6481 21.6287L14.3422 22.3494ZM26.3579 22.3534L27.9075 20.9001C28.0067 20.8082 28.0627 20.6792 28.0647 20.5443C28.0668 20.4094 28.0137 20.2784 27.9185 20.1835L26.369 18.6373L25.6608 19.3439L26.3549 20.0375H24.0111V21.037H26.2988L25.6718 21.6247L26.3579 22.3534ZM17.5875 23.3609C18.3388 23.057 19.1621 22.8941 20.0045 22.8941C20.8469 22.8941 21.6702 23.057 22.4215 23.3609C21.7524 21.5898 21.7524 19.3899 22.4215 17.6188C20.919 18.2265 19.09 18.2265 17.5875 17.6188C18.2566 19.3899 18.2566 21.5898 17.5875 23.3609ZM15.6443 25.3409C15.5462 25.2439 15.4971 25.116 15.4971 24.988C15.4971 24.8601 15.5462 24.7322 15.6443 24.6342C17.5845 22.6982 17.5845 18.2824 15.6443 16.3454C15.5462 16.2485 15.4971 16.1205 15.4971 15.9926C15.4971 15.8647 15.5462 15.7367 15.6443 15.6388C15.8397 15.4439 16.1572 15.4439 16.3525 15.6388C17.274 16.5583 18.6052 17.086 20.0045 17.086C21.4048 17.086 22.736 16.5583 23.6575 15.6388C23.8528 15.4439 24.1704 15.4439 24.3657 15.6388C24.4628 15.7367 24.5119 15.8647 24.5119 15.9926C24.5119 16.1205 24.4628 16.2485 24.3657 16.3454C22.4245 18.2824 22.4245 22.6982 24.3657 24.6342C24.4628 24.7322 24.5119 24.8601 24.5119 24.988C24.5119 25.116 24.4628 25.2439 24.3657 25.3409C24.2675 25.4388 24.1393 25.4878 24.0111 25.4878C23.8829 25.4878 23.7547 25.4388 23.6575 25.3409C22.736 24.4213 21.4048 23.8936 20.0045 23.8936C18.6052 23.8936 17.274 24.4213 16.3525 25.3409C16.1572 25.5358 15.8397 25.5358 15.6443 25.3409ZM32.5421 19.4359C32.2366 19.132 31.8369 18.9801 31.4363 18.9801C31.0366 18.9801 30.637 19.132 30.3315 19.4359C29.7215 20.0445 29.7215 21.034 30.3315 21.6417C30.9415 22.2504 31.9321 22.2504 32.5421 21.6417C33.1511 21.034 33.1511 20.0445 32.5421 19.4359ZM33.2503 22.3494C32.7504 22.8481 32.0934 23.098 31.4363 23.098C30.7802 23.098 30.1231 22.8481 29.6233 22.3494C28.6237 21.3509 28.6237 19.7277 29.6233 18.7292C30.623 17.7317 32.2506 17.7317 33.2503 18.7292C34.2499 19.7277 34.2499 21.3509 33.2503 22.3494ZM9.66853 19.4468C9.36302 19.143 8.96337 18.9911 8.56271 18.9911C8.16305 18.9911 7.7634 19.143 7.4579 19.4468C6.84889 20.0555 6.84889 21.045 7.4579 21.6527C8.0679 22.2614 9.05852 22.2614 9.66853 21.6527C10.2775 21.045 10.2775 20.0555 9.66853 19.4468ZM10.3767 22.3594C9.87687 22.8581 9.21979 23.108 8.56271 23.108C7.90663 23.108 7.24955 22.8581 6.74973 22.3594C5.75009 21.3619 5.75009 19.7387 6.74973 18.7402C7.74937 17.7427 9.37705 17.7427 10.3767 18.7402C11.3763 19.7387 11.3763 21.3619 10.3767 22.3594ZM27.4337 28.9101C25.4364 30.9031 22.7821 32.0005 19.9574 32.0005C17.1328 32.0005 14.4784 30.9031 12.4821 28.9101C11.166 27.5977 10.4077 26.4693 9.94498 25.136L8.99843 25.4628C9.50726 26.9291 10.3627 28.2104 11.774 29.6167C13.9586 31.7986 16.8664 33 19.9574 33C23.0495 33 25.9563 31.7986 28.1419 29.6167C29.2828 28.4783 30.4206 27.1869 31.0116 25.4608L30.064 25.138C29.5392 26.6702 28.4894 27.8566 27.4337 28.9101ZM9.94498 15.8597L8.99843 15.5318C9.51027 14.0646 10.3657 12.7832 11.776 11.3759C16.2864 6.87519 23.6265 6.87419 28.1379 11.3759C29.2186 12.4534 30.4036 13.7897 31.0116 15.5318L30.064 15.8597C29.5241 14.3094 28.4293 13.0801 27.4297 12.0826C25.4344 10.0916 22.7811 8.99612 19.9574 8.99612C17.1338 8.99612 14.4804 10.0916 12.4852 12.0826C11.187 13.3779 10.4037 14.5423 9.94498 15.8597Z\" fill=\"#E7157B\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#E7157B\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23295_2989\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3422051,22.3493786 L15.8466767,20.9061074 C15.9428347,20.8141539 15.9969235,20.687218 15.9999285,20.5552846 C16.0019317,20.4223517 15.9518495,20.2934168 15.8596981,20.1984648 L14.3552264,18.6432502 L13.6350433,19.3378994 L14.311154,20.037546 L11.9913429,20.037546 L11.9913429,21.0370413 L14.2650783,21.0370413 L13.6480647,21.6287425 L14.3422051,22.3493786 Z M26.3579452,22.3533765 L27.9074909,20.9001104 C28.0066538,20.8081569 28.0627459,20.679222 28.0647492,20.5442901 C28.0667525,20.4093583 28.0136653,20.2784244 27.918509,20.1834724 L26.3689633,18.6372532 L25.6607999,19.3438963 L26.3549403,20.037546 L24.0110896,20.037546 L24.0110896,21.0370413 L26.2988481,21.0370413 L25.671818,21.6247445 L26.3579452,22.3533765 Z M17.5875367,23.3608678 C18.3387708,23.0570212 19.1621235,22.8941035 20.0045074,22.8941035 C20.8468913,22.8941035 21.670244,23.0570212 22.4214781,23.3608678 C21.7523789,21.5897622 21.7523789,19.3898731 22.4214781,17.6187675 C20.9190098,18.2264606 19.090005,18.2264606 17.5875367,17.6187675 C18.2566359,19.3898731 18.2566359,21.5897622 17.5875367,23.3608678 L17.5875367,23.3608678 Z M15.6443443,25.3408679 C15.546183,25.2439168 15.4971024,25.1159814 15.4971024,24.988046 C15.4971024,24.8601106 15.546183,24.7321753 15.6443443,24.6342247 C17.5845317,22.6982024 17.5845317,18.2824324 15.6443443,16.3454106 C15.546183,16.2484595 15.4971024,16.1205241 15.4971024,15.9925912 C15.4971024,15.8646534 15.546183,15.736718 15.6443443,15.6387674 C15.8396652,15.4438659 16.1571868,15.4438659 16.3525077,15.6387674 C17.2740216,16.5583031 18.6052086,17.0860366 20.0045074,17.0860366 C21.4048079,17.0860366 22.7359948,16.5583031 23.6575088,15.6387674 C23.8528296,15.4438659 24.1703513,15.4438659 24.3656722,15.6387674 C24.4628318,15.736718 24.5119124,15.8646534 24.5119124,15.9925912 C24.5119124,16.1205241 24.4628318,16.2484595 24.3656722,16.3454106 C22.4244831,18.2824324 22.4244831,22.6982024 24.3656722,24.6342247 C24.4628318,24.7321753 24.5119124,24.8601106 24.5119124,24.988046 C24.5119124,25.1159814 24.4628318,25.2439168 24.3656722,25.3408679 C24.2675109,25.4388184 24.1393003,25.4877937 24.0110896,25.4877937 C23.882879,25.4877937 23.7546684,25.4388184 23.6575088,25.3408679 C22.7359948,24.4213322 21.4048079,23.8935987 20.0045074,23.8935987 C18.6052086,23.8935987 17.2740216,24.4213322 16.3525077,25.3408679 C16.1571868,25.5357694 15.8396652,25.5357694 15.6443443,25.3408679 L15.6443443,25.3408679 Z M32.5421049,19.4358499 C32.236603,19.1320033 31.8369464,18.9800801 31.4362882,18.9800801 C31.0366316,18.9800801 30.636975,19.1320033 30.3314731,19.4358499 C29.721471,20.0445425 29.721471,21.0340428 30.3314731,21.6417359 C30.9414753,22.2504285 31.9321027,22.2504285 32.5421049,21.6417359 C33.1511054,21.0340428 33.1511054,20.0445425 32.5421049,19.4358499 L32.5421049,19.4358499 Z M33.2502683,22.3493786 C32.7504472,22.8481267 32.0933677,23.0980005 31.4362882,23.0980005 C30.7802103,23.0980005 30.1231309,22.8481267 29.6233097,22.3493786 C28.6236675,21.3508828 28.6236675,19.7277025 29.6233097,18.7292068 C30.622952,17.7317105 32.250626,17.7317105 33.2502683,18.7292068 C34.2499106,19.7277025 34.2499106,21.3508828 33.2502683,22.3493786 L33.2502683,22.3493786 Z M9.66852687,19.4468443 C9.36302497,19.1429978 8.96336839,18.9910745 8.56271017,18.9910745 C8.16305359,18.9910745 7.76339701,19.1429978 7.45789511,19.4468443 C6.84889461,20.055537 6.84889461,21.0450373 7.45789511,21.6527304 C8.06789726,22.261423 9.05852472,22.261423 9.66852687,21.6527304 C10.2775274,21.0450373 10.2775274,20.055537 9.66852687,19.4468443 L9.66852687,19.4468443 Z M10.3766903,22.3593735 C9.87686914,22.8581217 9.21978965,23.1079955 8.56271017,23.1079955 C7.90663232,23.1079955 7.24955284,22.8581217 6.7497317,22.3593735 C5.75008943,21.3618773 5.75008943,19.738697 6.7497317,18.7402012 C7.74937397,17.7427049 9.37704801,17.7427049 10.3766903,18.7402012 C11.3763325,19.738697 11.3763325,21.3618773 10.3766903,22.3593735 L10.3766903,22.3593735 Z M27.4337125,28.9100654 C25.4364313,30.903059 22.7820705,32.0005047 19.9574301,32.0005047 C17.1327896,32.0005047 14.4784288,30.903059 12.4821492,28.9100654 C11.165987,27.5977281 10.4077413,26.469298 9.94498104,25.1359713 L8.99842599,25.4628063 C9.50726193,26.9290658 10.3626672,28.2104187 11.7739858,29.6167086 C13.9585748,31.7986067 16.8663519,33 19.9574301,33 C23.0495099,33 25.9562853,31.7986067 28.1418759,29.6167086 C29.2827502,28.4782835 30.4206196,27.1869356 31.0115905,25.4608073 L30.0640338,25.1379703 C29.5391715,26.6701966 28.4894469,27.8565974 27.4337125,28.9100654 L27.4337125,28.9100654 Z M9.94498104,15.8596559 L8.99842599,15.5318214 C9.51026687,14.0645624 10.3656722,12.7832095 11.7759891,11.3759202 C16.2863991,6.87519304 23.6264578,6.87419354 28.1378694,11.3759202 C29.2186449,12.4533761 30.4035916,13.7897012 31.0115905,15.5318214 L30.0640338,15.8596559 C29.5241468,14.3094387 28.4293482,13.0800596 27.4297059,12.0825633 C25.434428,10.0915688 22.7810689,8.99612197 19.9574301,8.99612197 C17.1337912,8.99612197 14.4804321,10.0915688 12.4851542,12.0825633 C11.1870215,13.3779092 10.4037347,14.5423211 9.94498104,15.8596559 L9.94498104,15.8596559 Z\" id=\"AWS-Simple-Queue-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AdoptedResource", diff --git a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json index 1447b19907b..ea6d4bf8cbc 100644 --- a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json +++ b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/FieldExport.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", + "primaryColor": "#E7157B", "secondaryColor": "", - "shape": "round-rectangle", + "shape": "rectangle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23295_2989)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#E7157B\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3422 22.3494L15.8467 20.9061C15.9428 20.8142 15.9969 20.6872 15.9999 20.5553C16.0019 20.4224 15.9518 20.2934 15.8597 20.1985L14.3552 18.6432L13.635 19.3379L14.3112 20.0375H11.9913V21.037H14.2651L13.6481 21.6287L14.3422 22.3494ZM26.3579 22.3534L27.9075 20.9001C28.0067 20.8082 28.0627 20.6792 28.0647 20.5443C28.0668 20.4094 28.0137 20.2784 27.9185 20.1835L26.369 18.6373L25.6608 19.3439L26.3549 20.0375H24.0111V21.037H26.2988L25.6718 21.6247L26.3579 22.3534ZM17.5875 23.3609C18.3388 23.057 19.1621 22.8941 20.0045 22.8941C20.8469 22.8941 21.6702 23.057 22.4215 23.3609C21.7524 21.5898 21.7524 19.3899 22.4215 17.6188C20.919 18.2265 19.09 18.2265 17.5875 17.6188C18.2566 19.3899 18.2566 21.5898 17.5875 23.3609ZM15.6443 25.3409C15.5462 25.2439 15.4971 25.116 15.4971 24.988C15.4971 24.8601 15.5462 24.7322 15.6443 24.6342C17.5845 22.6982 17.5845 18.2824 15.6443 16.3454C15.5462 16.2485 15.4971 16.1205 15.4971 15.9926C15.4971 15.8647 15.5462 15.7367 15.6443 15.6388C15.8397 15.4439 16.1572 15.4439 16.3525 15.6388C17.274 16.5583 18.6052 17.086 20.0045 17.086C21.4048 17.086 22.736 16.5583 23.6575 15.6388C23.8528 15.4439 24.1704 15.4439 24.3657 15.6388C24.4628 15.7367 24.5119 15.8647 24.5119 15.9926C24.5119 16.1205 24.4628 16.2485 24.3657 16.3454C22.4245 18.2824 22.4245 22.6982 24.3657 24.6342C24.4628 24.7322 24.5119 24.8601 24.5119 24.988C24.5119 25.116 24.4628 25.2439 24.3657 25.3409C24.2675 25.4388 24.1393 25.4878 24.0111 25.4878C23.8829 25.4878 23.7547 25.4388 23.6575 25.3409C22.736 24.4213 21.4048 23.8936 20.0045 23.8936C18.6052 23.8936 17.274 24.4213 16.3525 25.3409C16.1572 25.5358 15.8397 25.5358 15.6443 25.3409ZM32.5421 19.4359C32.2366 19.132 31.8369 18.9801 31.4363 18.9801C31.0366 18.9801 30.637 19.132 30.3315 19.4359C29.7215 20.0445 29.7215 21.034 30.3315 21.6417C30.9415 22.2504 31.9321 22.2504 32.5421 21.6417C33.1511 21.034 33.1511 20.0445 32.5421 19.4359ZM33.2503 22.3494C32.7504 22.8481 32.0934 23.098 31.4363 23.098C30.7802 23.098 30.1231 22.8481 29.6233 22.3494C28.6237 21.3509 28.6237 19.7277 29.6233 18.7292C30.623 17.7317 32.2506 17.7317 33.2503 18.7292C34.2499 19.7277 34.2499 21.3509 33.2503 22.3494ZM9.66853 19.4468C9.36302 19.143 8.96337 18.9911 8.56271 18.9911C8.16305 18.9911 7.7634 19.143 7.4579 19.4468C6.84889 20.0555 6.84889 21.045 7.4579 21.6527C8.0679 22.2614 9.05852 22.2614 9.66853 21.6527C10.2775 21.045 10.2775 20.0555 9.66853 19.4468ZM10.3767 22.3594C9.87687 22.8581 9.21979 23.108 8.56271 23.108C7.90663 23.108 7.24955 22.8581 6.74973 22.3594C5.75009 21.3619 5.75009 19.7387 6.74973 18.7402C7.74937 17.7427 9.37705 17.7427 10.3767 18.7402C11.3763 19.7387 11.3763 21.3619 10.3767 22.3594ZM27.4337 28.9101C25.4364 30.9031 22.7821 32.0005 19.9574 32.0005C17.1328 32.0005 14.4784 30.9031 12.4821 28.9101C11.166 27.5977 10.4077 26.4693 9.94498 25.136L8.99843 25.4628C9.50726 26.9291 10.3627 28.2104 11.774 29.6167C13.9586 31.7986 16.8664 33 19.9574 33C23.0495 33 25.9563 31.7986 28.1419 29.6167C29.2828 28.4783 30.4206 27.1869 31.0116 25.4608L30.064 25.138C29.5392 26.6702 28.4894 27.8566 27.4337 28.9101ZM9.94498 15.8597L8.99843 15.5318C9.51027 14.0646 10.3657 12.7832 11.776 11.3759C16.2864 6.87519 23.6265 6.87419 28.1379 11.3759C29.2186 12.4534 30.4036 13.7897 31.0116 15.5318L30.064 15.8597C29.5241 14.3094 28.4293 13.0801 27.4297 12.0826C25.4344 10.0916 22.7811 8.99612 19.9574 8.99612C17.1338 8.99612 14.4804 10.0916 12.4852 12.0826C11.187 13.3779 10.4037 14.5423 9.94498 15.8597Z\" fill=\"#E7157B\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#E7157B\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23295_2989\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3422051,22.3493786 L15.8466767,20.9061074 C15.9428347,20.8141539 15.9969235,20.687218 15.9999285,20.5552846 C16.0019317,20.4223517 15.9518495,20.2934168 15.8596981,20.1984648 L14.3552264,18.6432502 L13.6350433,19.3378994 L14.311154,20.037546 L11.9913429,20.037546 L11.9913429,21.0370413 L14.2650783,21.0370413 L13.6480647,21.6287425 L14.3422051,22.3493786 Z M26.3579452,22.3533765 L27.9074909,20.9001104 C28.0066538,20.8081569 28.0627459,20.679222 28.0647492,20.5442901 C28.0667525,20.4093583 28.0136653,20.2784244 27.918509,20.1834724 L26.3689633,18.6372532 L25.6607999,19.3438963 L26.3549403,20.037546 L24.0110896,20.037546 L24.0110896,21.0370413 L26.2988481,21.0370413 L25.671818,21.6247445 L26.3579452,22.3533765 Z M17.5875367,23.3608678 C18.3387708,23.0570212 19.1621235,22.8941035 20.0045074,22.8941035 C20.8468913,22.8941035 21.670244,23.0570212 22.4214781,23.3608678 C21.7523789,21.5897622 21.7523789,19.3898731 22.4214781,17.6187675 C20.9190098,18.2264606 19.090005,18.2264606 17.5875367,17.6187675 C18.2566359,19.3898731 18.2566359,21.5897622 17.5875367,23.3608678 L17.5875367,23.3608678 Z M15.6443443,25.3408679 C15.546183,25.2439168 15.4971024,25.1159814 15.4971024,24.988046 C15.4971024,24.8601106 15.546183,24.7321753 15.6443443,24.6342247 C17.5845317,22.6982024 17.5845317,18.2824324 15.6443443,16.3454106 C15.546183,16.2484595 15.4971024,16.1205241 15.4971024,15.9925912 C15.4971024,15.8646534 15.546183,15.736718 15.6443443,15.6387674 C15.8396652,15.4438659 16.1571868,15.4438659 16.3525077,15.6387674 C17.2740216,16.5583031 18.6052086,17.0860366 20.0045074,17.0860366 C21.4048079,17.0860366 22.7359948,16.5583031 23.6575088,15.6387674 C23.8528296,15.4438659 24.1703513,15.4438659 24.3656722,15.6387674 C24.4628318,15.736718 24.5119124,15.8646534 24.5119124,15.9925912 C24.5119124,16.1205241 24.4628318,16.2484595 24.3656722,16.3454106 C22.4244831,18.2824324 22.4244831,22.6982024 24.3656722,24.6342247 C24.4628318,24.7321753 24.5119124,24.8601106 24.5119124,24.988046 C24.5119124,25.1159814 24.4628318,25.2439168 24.3656722,25.3408679 C24.2675109,25.4388184 24.1393003,25.4877937 24.0110896,25.4877937 C23.882879,25.4877937 23.7546684,25.4388184 23.6575088,25.3408679 C22.7359948,24.4213322 21.4048079,23.8935987 20.0045074,23.8935987 C18.6052086,23.8935987 17.2740216,24.4213322 16.3525077,25.3408679 C16.1571868,25.5357694 15.8396652,25.5357694 15.6443443,25.3408679 L15.6443443,25.3408679 Z M32.5421049,19.4358499 C32.236603,19.1320033 31.8369464,18.9800801 31.4362882,18.9800801 C31.0366316,18.9800801 30.636975,19.1320033 30.3314731,19.4358499 C29.721471,20.0445425 29.721471,21.0340428 30.3314731,21.6417359 C30.9414753,22.2504285 31.9321027,22.2504285 32.5421049,21.6417359 C33.1511054,21.0340428 33.1511054,20.0445425 32.5421049,19.4358499 L32.5421049,19.4358499 Z M33.2502683,22.3493786 C32.7504472,22.8481267 32.0933677,23.0980005 31.4362882,23.0980005 C30.7802103,23.0980005 30.1231309,22.8481267 29.6233097,22.3493786 C28.6236675,21.3508828 28.6236675,19.7277025 29.6233097,18.7292068 C30.622952,17.7317105 32.250626,17.7317105 33.2502683,18.7292068 C34.2499106,19.7277025 34.2499106,21.3508828 33.2502683,22.3493786 L33.2502683,22.3493786 Z M9.66852687,19.4468443 C9.36302497,19.1429978 8.96336839,18.9910745 8.56271017,18.9910745 C8.16305359,18.9910745 7.76339701,19.1429978 7.45789511,19.4468443 C6.84889461,20.055537 6.84889461,21.0450373 7.45789511,21.6527304 C8.06789726,22.261423 9.05852472,22.261423 9.66852687,21.6527304 C10.2775274,21.0450373 10.2775274,20.055537 9.66852687,19.4468443 L9.66852687,19.4468443 Z M10.3766903,22.3593735 C9.87686914,22.8581217 9.21978965,23.1079955 8.56271017,23.1079955 C7.90663232,23.1079955 7.24955284,22.8581217 6.7497317,22.3593735 C5.75008943,21.3618773 5.75008943,19.738697 6.7497317,18.7402012 C7.74937397,17.7427049 9.37704801,17.7427049 10.3766903,18.7402012 C11.3763325,19.738697 11.3763325,21.3618773 10.3766903,22.3593735 L10.3766903,22.3593735 Z M27.4337125,28.9100654 C25.4364313,30.903059 22.7820705,32.0005047 19.9574301,32.0005047 C17.1327896,32.0005047 14.4784288,30.903059 12.4821492,28.9100654 C11.165987,27.5977281 10.4077413,26.469298 9.94498104,25.1359713 L8.99842599,25.4628063 C9.50726193,26.9290658 10.3626672,28.2104187 11.7739858,29.6167086 C13.9585748,31.7986067 16.8663519,33 19.9574301,33 C23.0495099,33 25.9562853,31.7986067 28.1418759,29.6167086 C29.2827502,28.4782835 30.4206196,27.1869356 31.0115905,25.4608073 L30.0640338,25.1379703 C29.5391715,26.6701966 28.4894469,27.8565974 27.4337125,28.9100654 L27.4337125,28.9100654 Z M9.94498104,15.8596559 L8.99842599,15.5318214 C9.51026687,14.0645624 10.3656722,12.7832095 11.7759891,11.3759202 C16.2863991,6.87519304 23.6264578,6.87419354 28.1378694,11.3759202 C29.2186449,12.4533761 30.4035916,13.7897012 31.0115905,15.5318214 L30.0640338,15.8596559 C29.5241468,14.3094387 28.4293482,13.0800596 27.4297059,12.0825633 C25.434428,10.0915688 22.7810689,8.99612197 19.9574301,8.99612197 C17.1337912,8.99612197 14.4804321,10.0915688 12.4851542,12.0825633 C11.1870215,13.3779092 10.4037347,14.5423211 9.94498104,15.8596559 L9.94498104,15.8596559 Z\" id=\"AWS-Simple-Queue-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FieldExport", diff --git a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json index 49ee060c305..db9d8e8ee4f 100644 --- a/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json +++ b/server/meshmodel/aws-sqs-controller/v1.0.13/v1.0.0/components/Queue.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "", + "primaryColor": "#E7157B", "secondaryColor": "", - "shape": "round-rectangle", + "shape": "rectangle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23295_2989)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#E7157B\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3422 22.3494L15.8467 20.9061C15.9428 20.8142 15.9969 20.6872 15.9999 20.5553C16.0019 20.4224 15.9518 20.2934 15.8597 20.1985L14.3552 18.6432L13.635 19.3379L14.3112 20.0375H11.9913V21.037H14.2651L13.6481 21.6287L14.3422 22.3494ZM26.3579 22.3534L27.9075 20.9001C28.0067 20.8082 28.0627 20.6792 28.0647 20.5443C28.0668 20.4094 28.0137 20.2784 27.9185 20.1835L26.369 18.6373L25.6608 19.3439L26.3549 20.0375H24.0111V21.037H26.2988L25.6718 21.6247L26.3579 22.3534ZM17.5875 23.3609C18.3388 23.057 19.1621 22.8941 20.0045 22.8941C20.8469 22.8941 21.6702 23.057 22.4215 23.3609C21.7524 21.5898 21.7524 19.3899 22.4215 17.6188C20.919 18.2265 19.09 18.2265 17.5875 17.6188C18.2566 19.3899 18.2566 21.5898 17.5875 23.3609ZM15.6443 25.3409C15.5462 25.2439 15.4971 25.116 15.4971 24.988C15.4971 24.8601 15.5462 24.7322 15.6443 24.6342C17.5845 22.6982 17.5845 18.2824 15.6443 16.3454C15.5462 16.2485 15.4971 16.1205 15.4971 15.9926C15.4971 15.8647 15.5462 15.7367 15.6443 15.6388C15.8397 15.4439 16.1572 15.4439 16.3525 15.6388C17.274 16.5583 18.6052 17.086 20.0045 17.086C21.4048 17.086 22.736 16.5583 23.6575 15.6388C23.8528 15.4439 24.1704 15.4439 24.3657 15.6388C24.4628 15.7367 24.5119 15.8647 24.5119 15.9926C24.5119 16.1205 24.4628 16.2485 24.3657 16.3454C22.4245 18.2824 22.4245 22.6982 24.3657 24.6342C24.4628 24.7322 24.5119 24.8601 24.5119 24.988C24.5119 25.116 24.4628 25.2439 24.3657 25.3409C24.2675 25.4388 24.1393 25.4878 24.0111 25.4878C23.8829 25.4878 23.7547 25.4388 23.6575 25.3409C22.736 24.4213 21.4048 23.8936 20.0045 23.8936C18.6052 23.8936 17.274 24.4213 16.3525 25.3409C16.1572 25.5358 15.8397 25.5358 15.6443 25.3409ZM32.5421 19.4359C32.2366 19.132 31.8369 18.9801 31.4363 18.9801C31.0366 18.9801 30.637 19.132 30.3315 19.4359C29.7215 20.0445 29.7215 21.034 30.3315 21.6417C30.9415 22.2504 31.9321 22.2504 32.5421 21.6417C33.1511 21.034 33.1511 20.0445 32.5421 19.4359ZM33.2503 22.3494C32.7504 22.8481 32.0934 23.098 31.4363 23.098C30.7802 23.098 30.1231 22.8481 29.6233 22.3494C28.6237 21.3509 28.6237 19.7277 29.6233 18.7292C30.623 17.7317 32.2506 17.7317 33.2503 18.7292C34.2499 19.7277 34.2499 21.3509 33.2503 22.3494ZM9.66853 19.4468C9.36302 19.143 8.96337 18.9911 8.56271 18.9911C8.16305 18.9911 7.7634 19.143 7.4579 19.4468C6.84889 20.0555 6.84889 21.045 7.4579 21.6527C8.0679 22.2614 9.05852 22.2614 9.66853 21.6527C10.2775 21.045 10.2775 20.0555 9.66853 19.4468ZM10.3767 22.3594C9.87687 22.8581 9.21979 23.108 8.56271 23.108C7.90663 23.108 7.24955 22.8581 6.74973 22.3594C5.75009 21.3619 5.75009 19.7387 6.74973 18.7402C7.74937 17.7427 9.37705 17.7427 10.3767 18.7402C11.3763 19.7387 11.3763 21.3619 10.3767 22.3594ZM27.4337 28.9101C25.4364 30.9031 22.7821 32.0005 19.9574 32.0005C17.1328 32.0005 14.4784 30.9031 12.4821 28.9101C11.166 27.5977 10.4077 26.4693 9.94498 25.136L8.99843 25.4628C9.50726 26.9291 10.3627 28.2104 11.774 29.6167C13.9586 31.7986 16.8664 33 19.9574 33C23.0495 33 25.9563 31.7986 28.1419 29.6167C29.2828 28.4783 30.4206 27.1869 31.0116 25.4608L30.064 25.138C29.5392 26.6702 28.4894 27.8566 27.4337 28.9101ZM9.94498 15.8597L8.99843 15.5318C9.51027 14.0646 10.3657 12.7832 11.776 11.3759C16.2864 6.87519 23.6265 6.87419 28.1379 11.3759C29.2186 12.4534 30.4036 13.7897 31.0116 15.5318L30.064 15.8597C29.5241 14.3094 28.4293 13.0801 27.4297 12.0826C25.4344 10.0916 22.7811 8.99612 19.9574 8.99612C17.1338 8.99612 14.4804 10.0916 12.4852 12.0826C11.187 13.3779 10.4037 14.5423 9.94498 15.8597Z\" fill=\"#E7157B\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#E7157B\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23295_2989\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M14.3422051,22.3493786 L15.8466767,20.9061074 C15.9428347,20.8141539 15.9969235,20.687218 15.9999285,20.5552846 C16.0019317,20.4223517 15.9518495,20.2934168 15.8596981,20.1984648 L14.3552264,18.6432502 L13.6350433,19.3378994 L14.311154,20.037546 L11.9913429,20.037546 L11.9913429,21.0370413 L14.2650783,21.0370413 L13.6480647,21.6287425 L14.3422051,22.3493786 Z M26.3579452,22.3533765 L27.9074909,20.9001104 C28.0066538,20.8081569 28.0627459,20.679222 28.0647492,20.5442901 C28.0667525,20.4093583 28.0136653,20.2784244 27.918509,20.1834724 L26.3689633,18.6372532 L25.6607999,19.3438963 L26.3549403,20.037546 L24.0110896,20.037546 L24.0110896,21.0370413 L26.2988481,21.0370413 L25.671818,21.6247445 L26.3579452,22.3533765 Z M17.5875367,23.3608678 C18.3387708,23.0570212 19.1621235,22.8941035 20.0045074,22.8941035 C20.8468913,22.8941035 21.670244,23.0570212 22.4214781,23.3608678 C21.7523789,21.5897622 21.7523789,19.3898731 22.4214781,17.6187675 C20.9190098,18.2264606 19.090005,18.2264606 17.5875367,17.6187675 C18.2566359,19.3898731 18.2566359,21.5897622 17.5875367,23.3608678 L17.5875367,23.3608678 Z M15.6443443,25.3408679 C15.546183,25.2439168 15.4971024,25.1159814 15.4971024,24.988046 C15.4971024,24.8601106 15.546183,24.7321753 15.6443443,24.6342247 C17.5845317,22.6982024 17.5845317,18.2824324 15.6443443,16.3454106 C15.546183,16.2484595 15.4971024,16.1205241 15.4971024,15.9925912 C15.4971024,15.8646534 15.546183,15.736718 15.6443443,15.6387674 C15.8396652,15.4438659 16.1571868,15.4438659 16.3525077,15.6387674 C17.2740216,16.5583031 18.6052086,17.0860366 20.0045074,17.0860366 C21.4048079,17.0860366 22.7359948,16.5583031 23.6575088,15.6387674 C23.8528296,15.4438659 24.1703513,15.4438659 24.3656722,15.6387674 C24.4628318,15.736718 24.5119124,15.8646534 24.5119124,15.9925912 C24.5119124,16.1205241 24.4628318,16.2484595 24.3656722,16.3454106 C22.4244831,18.2824324 22.4244831,22.6982024 24.3656722,24.6342247 C24.4628318,24.7321753 24.5119124,24.8601106 24.5119124,24.988046 C24.5119124,25.1159814 24.4628318,25.2439168 24.3656722,25.3408679 C24.2675109,25.4388184 24.1393003,25.4877937 24.0110896,25.4877937 C23.882879,25.4877937 23.7546684,25.4388184 23.6575088,25.3408679 C22.7359948,24.4213322 21.4048079,23.8935987 20.0045074,23.8935987 C18.6052086,23.8935987 17.2740216,24.4213322 16.3525077,25.3408679 C16.1571868,25.5357694 15.8396652,25.5357694 15.6443443,25.3408679 L15.6443443,25.3408679 Z M32.5421049,19.4358499 C32.236603,19.1320033 31.8369464,18.9800801 31.4362882,18.9800801 C31.0366316,18.9800801 30.636975,19.1320033 30.3314731,19.4358499 C29.721471,20.0445425 29.721471,21.0340428 30.3314731,21.6417359 C30.9414753,22.2504285 31.9321027,22.2504285 32.5421049,21.6417359 C33.1511054,21.0340428 33.1511054,20.0445425 32.5421049,19.4358499 L32.5421049,19.4358499 Z M33.2502683,22.3493786 C32.7504472,22.8481267 32.0933677,23.0980005 31.4362882,23.0980005 C30.7802103,23.0980005 30.1231309,22.8481267 29.6233097,22.3493786 C28.6236675,21.3508828 28.6236675,19.7277025 29.6233097,18.7292068 C30.622952,17.7317105 32.250626,17.7317105 33.2502683,18.7292068 C34.2499106,19.7277025 34.2499106,21.3508828 33.2502683,22.3493786 L33.2502683,22.3493786 Z M9.66852687,19.4468443 C9.36302497,19.1429978 8.96336839,18.9910745 8.56271017,18.9910745 C8.16305359,18.9910745 7.76339701,19.1429978 7.45789511,19.4468443 C6.84889461,20.055537 6.84889461,21.0450373 7.45789511,21.6527304 C8.06789726,22.261423 9.05852472,22.261423 9.66852687,21.6527304 C10.2775274,21.0450373 10.2775274,20.055537 9.66852687,19.4468443 L9.66852687,19.4468443 Z M10.3766903,22.3593735 C9.87686914,22.8581217 9.21978965,23.1079955 8.56271017,23.1079955 C7.90663232,23.1079955 7.24955284,22.8581217 6.7497317,22.3593735 C5.75008943,21.3618773 5.75008943,19.738697 6.7497317,18.7402012 C7.74937397,17.7427049 9.37704801,17.7427049 10.3766903,18.7402012 C11.3763325,19.738697 11.3763325,21.3618773 10.3766903,22.3593735 L10.3766903,22.3593735 Z M27.4337125,28.9100654 C25.4364313,30.903059 22.7820705,32.0005047 19.9574301,32.0005047 C17.1327896,32.0005047 14.4784288,30.903059 12.4821492,28.9100654 C11.165987,27.5977281 10.4077413,26.469298 9.94498104,25.1359713 L8.99842599,25.4628063 C9.50726193,26.9290658 10.3626672,28.2104187 11.7739858,29.6167086 C13.9585748,31.7986067 16.8663519,33 19.9574301,33 C23.0495099,33 25.9562853,31.7986067 28.1418759,29.6167086 C29.2827502,28.4782835 30.4206196,27.1869356 31.0115905,25.4608073 L30.0640338,25.1379703 C29.5391715,26.6701966 28.4894469,27.8565974 27.4337125,28.9100654 L27.4337125,28.9100654 Z M9.94498104,15.8596559 L8.99842599,15.5318214 C9.51026687,14.0645624 10.3656722,12.7832095 11.7759891,11.3759202 C16.2863991,6.87519304 23.6264578,6.87419354 28.1378694,11.3759202 C29.2186449,12.4533761 30.4035916,13.7897012 31.0115905,15.5318214 L30.0640338,15.8596559 C29.5241468,14.3094387 28.4293482,13.0800596 27.4297059,12.0825633 C25.434428,10.0915688 22.7810689,8.99612197 19.9574301,8.99612197 C17.1337912,8.99612197 14.4804321,10.0915688 12.4851542,12.0825633 C11.1870215,13.3779092 10.4037347,14.5423211 9.94498104,15.8596559 L9.94498104,15.8596559 Z\" id=\"AWS-Simple-Queue-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Queue", diff --git a/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json b/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json index 18c8c23e895..bedfef57be9 100644 --- a/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json +++ b/server/meshmodel/aws-target-group-binding/0.1.0/v1.0.0/components/TargetGroupBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#252F3E;stroke:#fff;stroke-width:2;}\n .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\" width='304' height='182'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "TargetGroupBinding", diff --git a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json index 3777e3efb9c..1a47246f33b 100644 --- a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json +++ b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/ENIConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#252F3E;stroke:#fff;stroke-width:2;}\n .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\" width='304' height='182'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ENIConfig", diff --git a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json index d943d793879..3b49f73828f 100644 --- a/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json +++ b/server/meshmodel/aws-vpc-cni/1.18.2/v1.0.0/components/PolicyEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ff9900", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#252F3E;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2 c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8 c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8 c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4 c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1 c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6 c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7 c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6 C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4 c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1 h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5 c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1 c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8 c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3 c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5 c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1 c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1 c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2 c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1 c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6 c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st1\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4 c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n\t\t\u003cpath class=\"st1\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5 c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 304 182\" style=\"enable-background:new 0 0 304 182;\" xml:space=\"preserve\" width='304' height='182'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cg\u003e\n \u003cpath class=\"st0\" d=\"M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3L83.2,92\n c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8\n c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6s14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8\n s7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3s-7.3,2-10.8,3.4\n c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5s1.4-1.4,2.8-2.1\n c3.5-1.8,7.7-3.3,12.6-4.5C41,1.9,46.2,1.3,51.7,1.3c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6v32.4H86.4z M45.8,81.6\n c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4s1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7s-6.3-0.6-9.4-0.6\n c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4\n c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1\n c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9\n l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5c0,0.5-0.1,1-0.2,1.6\n c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9s-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1s-1.5-2-1.9-4L156,23\n l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8c-5-1.2-8.9-2.5-11.5-4\n c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.5,0.6,2.5,1\n c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5c0-2.8-0.9-5.1-2.7-7\n c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1s4.2-6,7.2-8.2\n c3-2.3,6.4-4,10.4-5.2s8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1c2,0.5,3.9,1,5.7,1.6\n c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2c-0.8,0-2.1-0.4-3.8-1.2\n c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8s-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1c2,1.9,5.7,3.8,11,5.5l14.2,4.5\n c7.2,2.3,12.4,5.5,15.5,9.6s4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6\n C264.4,94.4,259.7,95.1,254.6,95.1z\"/\u003e\n \u003cg\u003e\n \u003cpath class=\"st0\" d=\"M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4\n c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z\"/\u003e\n \u003cpath class=\"st0\" d=\"M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5\n c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "PolicyEndpoint", diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json index 31eec5a8a35..0787bcc341d 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWX.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#e00000", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\" width='255.1' height='255.1'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWX", diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json index f1c5c3d7607..38b3c9379c0 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXBackup.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#e00000", - "secondaryColor": "#00D3A9", + "secondaryColor": "#F4BC79", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\" width='255.1' height='255.1'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWXBackup", diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json index dd7c19c97cb..379312799a6 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXMeshIngress.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#e00000", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json index 7bea2996520..15abd172a7d 100644 --- a/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json +++ b/server/meshmodel/awx-operator/2.18.0/v1.0.0/components/AWXRestore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#e00000", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#1A1918;}\n .st1{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n C198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath class=\"st1\" d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n c-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n C189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 255.1 255.1\" style=\"enable-background:new 0 0 255.1 255.1;\" xml:space=\"preserve\" width='255.1' height='255.1'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M255.1,127.6c0,70.5-57.1,127.6-127.6,127.6C57.1,255.1,0,198,0,127.6C0,57.1,57.1,0,127.6,0\n\tC198,0,255.1,57.1,255.1,127.6\"/\u003e\n\u003cpath d=\"M129.7,77.9l33,81.5l-49.9-39.3L129.7,77.9L129.7,77.9z M188.4,178.2L137.6,56c-1.4-3.5-4.3-5.4-7.9-5.4\n\tc-3.5,0-6.6,1.9-8.1,5.4L65.9,190H85l22.1-55.3l65.8,53.2c2.6,2.1,4.6,3.1,7,3.1c5,0,9.3-3.7,9.3-9.1\n\tC189.2,181.1,188.9,179.7,188.4,178.2L188.4,178.2z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "AWXRestore", diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json index 8f6fb8b22b4..f0fd1602f39 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/AuthService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json index d6a8b68d23e..451344fec1b 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ConsulResolver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json index c14efa51487..463fc6f876b 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/DevPortal.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json index 914de435b8b..183c6382213 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Filter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json index 5aeb2632439..85211963592 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/FilterPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json index 7adff2d6924..776cdb76067 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Host.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json index 673dcc74cf5..bd814a4773a 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesEndpointResolver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json index f1a0ca8944f..d9266f482f0 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/KubernetesServiceResolver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json index 351b4a01349..76951512604 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/LogService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json index 1566521585b..85234955119 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Mapping.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json index bb72d674419..03b4e9a6bec 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Module.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json index c29543b276c..59e8c8ee73f 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/Project.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json index 040f1e396ad..272798c1531 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectController.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json index f7d83f49cd0..96b5fffaf76 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/ProjectRevision.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json index 24d78cad071..b4044b5a0c6 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimit.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json index cac8523c0e1..5f1914fc8ad 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/RateLimitService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json index b0b93486826..bb8189af844 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TCPMapping.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json index 54894e248cd..67d6ed4387c 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TLSContext.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json index 06bdb21379f..b535e142a6f 100644 --- a/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json +++ b/server/meshmodel/azureorkestra/6.7.9/v1.0.0/components/TracingService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"#0078D4\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"url(#paint1_linear_27202_10248)\"/\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"url(#paint2_linear_27202_10248)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10248\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#114A8B\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#0669BC\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_27202_10248\" x1=\"200.919\" y1=\"184.63\" x2=\"174.346\" y2=\"193.641\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-opacity=\"0.3\"/\u003e\n\u003cstop offset=\"0.1\" stop-opacity=\"0.2\"/\u003e\n\u003cstop offset=\"0.3\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"0.6\" stop-opacity=\"0.1\"/\u003e\n\u003cstop offset=\"1\" stop-opacity=\"0\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_27202_10248\" x1=\"186.254\" y1=\"16.5657\" x2=\"312.398\" y2=\"352.532\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#3CCBF4\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#2892DF\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10248\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"374\" height=\"353\" viewBox=\"0 0 374 353\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.759 0.35712H235.298L120.546 340.643C119.96 342.381 119.106 344.017 118.015 345.492C116.927 346.968 115.615 348.262 114.125 349.331C112.636 350.401 110.992 351.232 109.245 351.793C107.499 352.353 105.678 352.643 103.847 352.643H17.8199C15.0274 352.643 12.2722 351.98 9.78787 350.7C7.30089 349.424 5.15409 347.572 3.52565 345.3C1.89615 343.028 0.830138 340.4 0.415557 337.635C-5.60341e-05 334.87 0.252114 332.044 1.14405 329.395L108.055 12.3477C108.638 10.6101 109.493 8.97521 110.586 7.49915C111.674 6.0231 112.991 4.72922 114.476 3.65955C115.965 2.58988 117.609 1.75844 119.356 1.19791C121.102 0.637383 122.923 0.347778 124.754 0.347778V0.352449L124.759 0.35712Z\" fill=\"url(#paint0_linear_27202_10253)\"/\u003e\n\u003cpath d=\"M328.531 352.643H229.274C228.168 352.643 227.061 352.54 225.968 352.33C224.88 352.124 223.811 351.816 222.779 351.41C221.747 351.003 220.757 350.499 219.818 349.91C218.88 349.318 218 348.639 217.189 347.883L104.553 242.663C103.362 241.55 102.532 240.105 102.171 238.515C101.811 236.925 101.938 235.263 102.535 233.746C103.132 232.229 104.172 230.927 105.52 230.009C106.869 229.094 108.462 228.603 110.091 228.603H285.377L328.522 352.648L328.531 352.643Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M235.695 0.357092L158.316 228.627L284.746 228.599L328.115 352.643H229.232C228.209 352.634 227.186 352.54 226.178 352.358C225.169 352.176 224.179 351.91 223.217 351.555C221.288 350.852 219.494 349.823 217.912 348.514L141.878 277.532L120.593 340.321C120.042 341.89 119.286 343.38 118.342 344.749C116.452 347.502 113.866 349.705 110.847 351.134C109.344 351.845 107.754 352.353 106.117 352.643H17.8713C15.0507 352.652 12.2675 351.98 9.75984 350.681C7.25177 349.384 5.09286 347.501 3.4656 345.193C1.83834 342.885 0.790579 340.219 0.41088 337.42C0.0325541 334.62 0.332037 331.77 1.28413 329.11L108.022 12.5859C108.578 10.8156 109.414 9.14801 110.497 7.64393C111.576 6.13985 112.893 4.81327 114.387 3.72025C115.881 2.62722 117.544 1.77709 119.304 1.20722C121.065 0.637355 122.909 0.347749 124.763 0.357092H235.699H235.695Z\" fill=\"white\"/\u003e\n\u003cg filter=\"url(#filter0_d_27202_10253)\"\u003e\n\u003cpath d=\"M372.855 329.395C373.748 332.045 373.999 334.869 373.589 337.635C373.174 340.4 372.109 343.026 370.483 345.3C368.854 347.571 366.708 349.422 364.223 350.698C361.737 351.975 358.983 352.642 356.189 352.643H232.99C235.782 352.643 238.538 351.975 241.027 350.7C243.511 349.425 245.659 347.57 247.289 345.3C248.919 343.03 249.983 340.4 250.399 337.635C250.815 334.87 250.562 332.044 249.671 329.395L142.755 12.3384C141.578 8.84574 139.336 5.81034 136.344 3.65955C134.859 2.58988 133.215 1.7631 131.473 1.20258C129.731 0.642051 127.91 0.357117 126.084 0.357117H249.278C251.109 0.357117 252.925 0.642051 254.672 1.20258C256.414 1.7631 258.057 2.59455 259.547 3.65955C261.032 4.72922 262.344 6.0231 263.432 7.49448C264.52 8.96586 265.37 10.6007 265.959 12.3384L372.874 329.395H372.855Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cfilter id=\"filter0_d_27202_10253\" x=\"53.084\" y=\"-69.6429\" width=\"387.695\" height=\"492.286\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"\u003e\n\u003cfeFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/\u003e\n\u003cfeColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/\u003e\n\u003cfeOffset dx=\"-3\"/\u003e\n\u003cfeGaussianBlur stdDeviation=\"35\"/\u003e\n\u003cfeComposite in2=\"hardAlpha\" operator=\"out\"/\u003e\n\u003cfeColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/\u003e\n\u003cfeBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_27202_10253\"/\u003e\n\u003cfeBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_27202_10253\" result=\"shape\"/\u003e\n\u003c/filter\u003e\n\u003clinearGradient id=\"paint0_linear_27202_10253\" x1=\"165.101\" y1=\"26.4683\" x2=\"50.1691\" y2=\"365.895\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"white\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F0F0F0\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_27202_10253\"\u003e\n\u003crect width=\"374\" height=\"353\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json index 132557aec71..959fd15c35e 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json index 330b1e40ede..e56d7a9367b 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json index 70701db0e7d..a1380636eb4 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Certificate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json index f5200783f69..888a7c5892b 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/CertificateRequest.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json index 93b18d8c94c..d5d1a674fad 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Challenge.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json index 1c0f7c3234e..fa44c6aedfa 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ClusterIssuer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json index 63a0cc8810e..32d9e9a3481 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Issuer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json index 32b02aead8b..1dae9f1717b 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Order.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json index a1860cef359..512bea4ee68 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json index 1435169598e..8d35b169f44 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json index 8f2c87337a6..b45517cffca 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json index bd741541f36..c688966bdff 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json index 1638f7b7eba..a85daa51c87 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json index cdd0af3241a..d8e88c2051f 100644 --- a/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/base-cluster/40.1.1/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#d15627;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9.26 8.96\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M6.37,6.9a2.92,2.92,0,0,1-4-.05C2,7.23,1.52,7.61,1.11,8a.2.2,0,0,0,0,.17.61.61,0,0,1-.26.71.55.55,0,0,1-.67-.09A.56.56,0,0,1,.1,8.07a.5.5,0,0,1,.64-.21c.16.08.24,0,.36-.07.36-.35.74-.67,1.11-1l.06-.06a2.88,2.88,0,0,1-.12-3.63l-.71-.56L1.3,2.42a.36.36,0,0,0-.43-.1A.46.46,0,0,1,.22,2a.51.51,0,0,1,.4-.61A.5.5,0,0,1,1.2,2a.3.3,0,0,0,.13.31l.81.65c.07.05.12.09.21,0A2.68,2.68,0,0,1,4.14,2a2.79,2.79,0,0,1,1.73.38L6.77,1C6.55.62,6.59.3,6.89.1a.54.54,0,0,1,.66,0,.57.57,0,0,1,.16.7.5.5,0,0,1-.6.3.23.23,0,0,0-.29.13L6.07,2.39a.93.93,0,0,0-.05.1A3,3,0,0,1,7.23,4.56c.38,0,.73-.07,1.07-.12,0,0,.1-.07.13-.12a.42.42,0,0,1,.68-.14.38.38,0,0,1,.05.55c-.19.21-.45.26-.61,0S8.24,4.61,8,4.64l-.79.1a3.13,3.13,0,0,1-.8,2l.76.7a.58.58,0,0,1,.53,0,.5.5,0,0,1-.41.9A.47.47,0,0,1,7,7.79a.27.27,0,0,0-.1-.34C6.72,7.27,6.54,7.08,6.37,6.9Zm-2-4.29A2.22,2.22,0,0,0,2.15,4.83a2.24,2.24,0,1,0,4.47,0A2.22,2.22,0,0,0,4.4,2.61Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json b/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json index 33ef056df7f..4b190b2f74c 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/AuthorizationPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AuthorizationPolicy", diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json b/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json index 0e387ac54ce..6d3beb93dd1 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/DestinationRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json b/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json index 2fc6c4e43e8..3cd3d5d050b 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/EnvoyFilter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json b/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json index 3548dae796d..ecab80b6a1c 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/Gateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json b/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json index 9c21119cbf5..320debc5486 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/PeerAuthentication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json b/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json index eaaf80744d1..7b26690fa1c 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/ProxyConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json b/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json index e87810af297..34b2ef8b704 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/RequestAuthentication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "RequestAuthentication", diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json b/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json index 59fea39d875..b4f2dc61233 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/ServiceEntry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json b/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json index fe848a01260..7f524a0d0ee 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/Sidecar.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json b/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json index ec782d0215f..a258c2ee22b 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/Telemetry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json b/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json index 64f411963ac..9393b1f7a97 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/VirtualService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json b/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json index e48ebed9637..82bc45d9de7 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/WasmPlugin.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json index 149686c9f22..09ed500029b 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadEntry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json index 8118cc7ecb8..e610a6772f8 100644 --- a/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json +++ b/server/meshmodel/base/1.22.1/v1.0.0/components/WorkloadGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"160\" height=\"240\" viewBox=\"0 0 160 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 210H160L60 240L0 210Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M0 200L60 190V80L0 200Z\" fill=\"#466BB0\"/\u003e\n\u003cpath d=\"M70 190L160 200L70 0V190Z\" fill=\"#466BB0\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg viewBox=\"6.386270046234131 3.7419400215148926 18.227430820465088 25.258059978485107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M6.38627 24.7904L13.2215 23.738V12.1613L6.38627 24.7904Z\" fill=\"white\"/\u003e\u003cpath d=\"M6.38627 25.8427H24.6137L13.2215 29L6.38627 25.8427Z\" fill=\"white\"/\u003e\u003cpath d=\"M14.3608 23.7379L24.6137 24.7904L14.3608 3.74194V23.7379Z\" fill=\"white\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json index 294d41f28a7..25fd76254cf 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/AccountBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AccountBinding", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json index 37e955a8bc1..e320d60b067 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Invite.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Invite", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json index c07ce77b743..16ee9c52f8f 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLDatabase.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MySQLDatabase", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json index a42d8d80915..ec80597aca7 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/MySQLUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MySQLUser", diff --git a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json index 97a04870820..157a0c53ba7 100644 --- a/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json +++ b/server/meshmodel/bitpoke/1.8.15/v1.0.0/components/Project.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Project", diff --git a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json index 783b227153d..35dcf3035ae 100644 --- a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json +++ b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenSecret.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json index fea8ba3994a..aafc54c3154 100644 --- a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json +++ b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/BitwardenTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json index 15e8a8543c1..c01c39ab099 100644 --- a/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json +++ b/server/meshmodel/bitwarden-crd-operator/0.12.0/v1.0.0/components/RegistryCredential.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json b/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json index 4c939ad7d9d..d0bd7f8ab7e 100644 --- a/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json +++ b/server/meshmodel/bottlerocket-update-operator/0.3.0/v1.0.0/components/BottlerocketShadow.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "BottlerocketShadow", diff --git a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json index 48647078a1f..706e2cd29e7 100644 --- a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json +++ b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Backup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Backup", diff --git a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json index 75b04854799..3c06800f502 100644 --- a/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json +++ b/server/meshmodel/brudi-operator/0.1.6/v1.0.0/components/Restore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Restore", diff --git a/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json b/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json index 3f6faec76d1..b5374a80002 100644 --- a/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json +++ b/server/meshmodel/bundle-controller/1.0.0-alpha1/v1.0.0/components/Bundle.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Bundle", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json index b832ca3980c..1cbb6724440 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/CloudProvider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CloudProvider", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json index aa955a9f14b..2afba394291 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterAuthInfoTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json index 9d6d37f589e..6d8846402f9 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterInfo.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json index c202a015510..475f9215e15 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/ClusterUserAuth.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json index cc439c72241..15df7d7d0ed 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Credential.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json index daf85625d94..734db0e46e6 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/EditorOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "EditorOption", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json index 4856f490bbc..5a81b903acb 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/MachineType.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MachineType", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json index 6fba91f483b..ebb1a7e4b02 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OptionsEditor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "OptionsEditor", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json index 65ccd04d1bc..4a0304757cc 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/OrgUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "OrgUser", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json index 539c00d89e2..49ad0cc143d 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Plan.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Plan", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json index abb47473a3d..7b5e2fd3e06 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Product.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Product", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json index bf0758dfb96..afed2a0dcdd 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/Team.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Team", diff --git a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json index d59d082b6de..855b795a18a 100644 --- a/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json +++ b/server/meshmodel/bytebuilders-crds/2022.4.14/v1.0.0/components/TeamUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27232_10437)\"\u003e\n\u003cpath d=\"M20 18.45C20 18.85 19.825 19.25 19.55 19.55C19.25 19.825 18.875 20 18.45 20H1.55C1.15 20 0.75 19.825 0.45 19.55C0.175 19.25 0 18.875 0 18.45V1.55C0 1.125 0.175 0.75 0.45 0.45C0.725 0.15 1.125 0 1.55 0H18.475C18.875 0 19.275 0.175 19.575 0.45C19.825 0.75 20 1.125 20 1.55V18.45Z\" fill=\"#193D4B\"/\u003e\n\u003cpath d=\"M17.5 12.65C17.525 11.8 16.75 11.625 16.3 11.7C15.425 11.85 15.5 12.65 15.5 12.65C15.5 13.45 15.325 14.025 14.925 14.4C14.525 14.825 13.975 15 13.25 15C11.725 15 11 14.225 11 12.65C11 13.95 10.65 14.9 10 15.575L10.15 15.725C10.925 16.4 11.95 16.7 13.25 16.7C14.55 16.7 15.6 16.375 16.35 15.725C17.125 15.075 17.5 14.05 17.5 12.65Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M13.2496 17.425C11.7746 17.425 10.5996 17.025 9.67461 16.275C9.59961 16.225 9.54961 16.15 9.47461 16.1L8.97461 15.575L9.47461 15.075C9.99961 14.575 10.2746 13.75 10.2746 12.65H11.6746C11.6746 13.85 12.0996 14.3 13.2496 14.3C13.7746 14.3 14.1746 14.175 14.4246 13.925C14.6746 13.675 14.7996 13.25 14.7996 12.675C14.7496 12.1 15.0996 11.175 16.1746 11C16.2746 10.975 16.3746 10.975 16.4996 10.975C16.7246 10.975 16.9746 11.025 17.1996 11.1C17.4246 11.175 17.6246 11.325 17.7996 11.475C18.0746 11.75 18.2246 12.125 18.2246 12.525V12.65C18.2246 14.25 17.7496 15.475 16.8246 16.275C15.8996 17.025 14.6996 17.425 13.2496 17.425ZM10.9496 15.475C11.5246 15.85 12.2996 16.025 13.2246 16.025C14.3496 16.025 15.2496 15.75 15.8746 15.2C16.4496 14.7 16.7746 13.9 16.7746 12.775V12.65C16.7746 12.6 16.7746 12.525 16.7496 12.5C16.6996 12.475 16.6496 12.45 16.5746 12.425C16.5246 12.4 16.4496 12.4 16.3996 12.425C16.2996 12.45 16.1996 12.45 16.1996 12.6V12.675C16.1996 13.65 15.9246 14.425 15.3996 14.925C14.8746 15.45 14.1496 15.725 13.2496 15.725C12.3996 15.725 11.6996 15.475 11.1996 15.05C11.1246 15.2 11.0246 15.325 10.9496 15.475ZM15.4996 7.35C15.4996 6.55 15.3246 5.975 14.9246 5.6C14.5246 5.175 13.9746 5 13.2496 5C11.7496 5 10.9996 5.775 10.9996 7.325C10.9996 6.025 10.6746 5.075 10.0246 4.4C10.0746 4.35 10.1246 4.325 10.1496 4.275C10.9246 3.6 11.9496 3.3 13.2496 3.3C14.5496 3.3 15.5996 3.625 16.3496 4.275C17.1246 4.95 17.5246 5.95 17.5246 7.35C17.5496 7.575 17.4746 7.825 17.3246 8C17.1746 8.175 16.9496 8.3 16.7246 8.325C16.2496 8.4 15.4746 8.2 15.4996 7.35Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.5246 9.05C16.2996 9.05 16.0496 9 15.8246 8.925C15.5996 8.85 15.3996 8.7 15.2246 8.55C15.0246 8.35 14.7746 7.975 14.7996 7.35C14.7996 6.8 14.6746 6.375 14.4246 6.1C14.1496 5.825 13.7746 5.725 13.2496 5.725C12.1246 5.725 11.6496 6.175 11.6496 7.35H10.2746C10.2746 6.25 9.99961 5.425 9.47461 4.925L8.97461 4.4L9.47461 3.9C9.52461 3.85 9.59961 3.775 9.64961 3.75C10.5496 2.975 11.7496 2.6 13.2246 2.6C14.6996 2.6 15.8746 3 16.7996 3.75C17.7246 4.55 18.1996 5.75 18.1996 7.35C18.2496 7.925 17.8996 8.85 16.8246 9.025C16.7246 9.025 16.6246 9.025 16.5246 9.05ZM13.2496 4.3C14.1496 4.3 14.8996 4.575 15.3996 5.1C15.9246 5.625 16.1996 6.375 16.1996 7.35C16.1996 7.425 16.1996 7.475 16.2246 7.525C16.2746 7.55 16.3246 7.575 16.3996 7.6C16.4496 7.625 16.5246 7.625 16.5746 7.6C16.6496 7.6 16.8246 7.575 16.7746 7.4V7.325C16.7746 6.125 16.4746 5.3 15.8746 4.775C15.2246 4.25 14.3246 3.95 13.2246 3.95C12.3246 3.95 11.5496 4.125 10.9746 4.475C11.0496 4.6 11.1246 4.75 11.2246 4.9C11.6996 4.525 12.3996 4.3 13.2496 4.3Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.4 14.4C8 14.8 7.45 14.975 6.725 14.975C5.2 14.975 4.475 14.2 4.475 12.625V7.35C4.475 5.775 5.225 5 6.725 5C7.45 5 8 5.175 8.4 5.575C8.8 5.975 8.975 6.55 8.975 7.325C8.975 6.025 9.325 5.075 9.975 4.4L9.85 4.25C9.075 3.575 8.05 3.275 6.75 3.275C5.45 3.275 4.4 3.6 3.65 4.25C2.9 4.9 2.5 5.925 2.5 7.325V12.625C2.5 14.025 2.875 15.05 3.65 15.7C4.425 16.35 5.45 16.675 6.75 16.675C8.05 16.675 9.1 16.35 9.85 15.7C9.9 15.65 9.95 15.625 9.975 15.575C9.3 14.9 9 13.95 9 12.65C9 13.425 8.775 14.025 8.4 14.4Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M6.7 17.4C5.25 17.4 4.05 17 3.15 16.25C2.2 15.45 1.75 14.25 1.75 12.625V7.35C1.75 5.75 2.225 4.525 3.125 3.725C4.025 2.95 5.225 2.575 6.7 2.575C8.15 2.575 9.35 2.975 10.275 3.725C10.35 3.775 10.4 3.85 10.475 3.9L10.9 4.425L10.475 4.9C9.95 5.4 9.675 6.225 9.675 7.325H8.275C8.275 6.75 8.15 6.325 7.9 6.05C7.625 5.775 7.25 5.675 6.725 5.675C5.6 5.675 5.15 6.125 5.15 7.325V12.625C5.15 13.825 5.575 14.275 6.725 14.275C7.25 14.275 7.65 14.15 7.9 13.9C8.15 13.65 8.275 13.225 8.275 12.65H9.675C9.675 13.75 9.95 14.575 10.45 15.075L10.95 15.575L10.45 16.075C10.4 16.125 10.325 16.2 10.275 16.225C9.4 17 8.2 17.4 6.7 17.4ZM6.7 3.975C5.575 3.975 4.675 4.25 4.05 4.8C3.45 5.325 3.15 6.15 3.15 7.35V12.65C3.15 13.85 3.45 14.675 4.05 15.2C4.7 15.725 5.575 16.025 6.7 16.025C7.6 16.025 8.375 15.85 8.95 15.5C8.875 15.375 8.8 15.2 8.7 15.075C8.2 15.5 7.5 15.75 6.675 15.75C4.775 15.75 3.725 14.625 3.725 12.7V7.35C3.725 5.4 4.825 4.3 6.675 4.3C7.525 4.3 8.2 4.5 8.725 4.975C8.8 4.825 8.875 4.675 8.975 4.55C8.4 4.15 7.625 3.975 6.7 3.975Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9 7.35V12.675C9 13.975 9.325 14.925 9.975 15.6C10.65 14.925 10.975 13.975 10.975 12.675V7.325C10.975 6.025 10.65 5.075 10 4.4C9.3 5.05 9 6.025 9 7.35Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.95039 16.475L9.47539 16.1C8.67539 15.3 8.27539 14.15 8.27539 12.675V7.35C8.27539 5.85 8.70039 4.725 9.50039 3.925L9.90039 3.525L10.4754 3.925C11.2754 4.725 11.6754 5.875 11.6754 7.35V12.675C11.6754 14.175 11.2504 15.3 10.4504 16.1L9.95039 16.475ZM9.97539 5.65C9.77539 6.2 9.67539 6.775 9.67539 7.35V12.65C9.65039 13.225 9.75039 13.8 9.97539 14.35C10.1754 13.9 10.2754 13.325 10.2754 12.65V7.35C10.3004 6.75 10.2004 6.175 9.97539 5.65Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M9.0002 12.825C9.0002 12.825 8.9252 14.45 9.9752 15.6C10.4002 16.075 11.0502 16.45 11.9502 16.6C12.6502 16.725 13.1502 15.4 12.4252 14.925C12.3502 14.9 11.0002 14.45 11.0002 12.675L9.0002 12.825Z\" fill=\"#00A651\"/\u003e\n\u003cpath d=\"M12.0247 17.275C11.9497 17.275 11.8747 17.275 11.8247 17.25C10.8497 17.075 10.0747 16.675 9.47469 16.025C8.22469 14.7 8.29969 12.825 8.29969 12.75L8.32469 12.15L11.6247 11.875L11.6997 12.65C11.6747 13.875 12.5247 14.2 12.6247 14.225L12.7497 14.25L12.8247 14.3C13.0997 14.5 13.2997 14.8 13.3997 15.125C13.4997 15.45 13.4997 15.8 13.3747 16.125C13.1747 16.825 12.5997 17.275 12.0247 17.275ZM9.72469 13.45C9.79969 13.925 9.99969 14.6 10.4747 15.1C10.8497 15.5 11.3247 15.75 11.9747 15.875C12.0247 15.8 12.0497 15.7 12.0497 15.6C12.0497 15.575 12.0497 15.525 12.0247 15.525C11.5997 15.35 11.1997 15.05 10.9247 14.675C10.6247 14.3 10.4247 13.875 10.3247 13.425L9.72469 13.45Z\" fill=\"#00A651\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27232_10437\"\u003e\n\u003crect width=\"20\" height=\"20\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M15.75 10.075C15.775 9.225 15 9.05 14.55 9.125C13.675 9.275 13.75 10.075 13.75 10.075C13.75 10.875 13.575 11.45 13.175 11.825C12.775 12.25 12.225 12.425 11.5 12.425C9.975 12.425 9.25 11.65 9.25 10.075C9.25 11.375 8.9 12.325 8.25 13L8.4 13.15C9.175 13.825 10.2 14.125 11.5 14.125C12.8 14.125 13.85 13.8 14.6 13.15C15.375 12.5 15.75 11.475 15.75 10.075Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M11.4996 14.85C10.0246 14.85 8.84961 14.45 7.92461 13.7C7.84961 13.65 7.79961 13.575 7.72461 13.525L7.22461 13L7.72461 12.5C8.24961 12 8.52461 11.175 8.52461 10.075H9.92461C9.92461 11.275 10.3496 11.725 11.4996 11.725C12.0246 11.725 12.4246 11.6 12.6746 11.35C12.9246 11.1 13.0496 10.675 13.0496 10.1C12.9996 9.525 13.3496 8.6 14.4246 8.425C14.5246 8.4 14.6246 8.4 14.7496 8.4C14.9746 8.4 15.2246 8.45 15.4496 8.525C15.6746 8.6 15.8746 8.75 16.0496 8.9C16.3246 9.175 16.4746 9.55 16.4746 9.95V10.075C16.4746 11.675 15.9996 12.9 15.0746 13.7C14.1496 14.45 12.9496 14.85 11.4996 14.85ZM9.19961 12.9C9.77461 13.275 10.5496 13.45 11.4746 13.45C12.5996 13.45 13.4996 13.175 14.1246 12.625C14.6996 12.125 15.0246 11.325 15.0246 10.2V10.075C15.0246 10.025 15.0246 9.95 14.9996 9.925C14.9496 9.9 14.8996 9.875 14.8246 9.85C14.7746 9.825 14.6996 9.825 14.6496 9.85C14.5496 9.875 14.4496 9.875 14.4496 10.025V10.1C14.4496 11.075 14.1746 11.85 13.6496 12.35C13.1246 12.875 12.3996 13.15 11.4996 13.15C10.6496 13.15 9.94961 12.9 9.44961 12.475C9.37461 12.625 9.27461 12.75 9.19961 12.9ZM13.7496 4.775C13.7496 3.975 13.5746 3.4 13.1746 3.025C12.7746 2.6 12.2246 2.425 11.4996 2.425C9.99961 2.425 9.24961 3.2 9.24961 4.75C9.24961 3.45 8.92461 2.5 8.27461 1.825C8.32461 1.775 8.37461 1.75 8.39961 1.7C9.17461 1.025 10.1996 0.724998 11.4996 0.724998C12.7996 0.724998 13.8496 1.05 14.5996 1.7C15.3746 2.375 15.7746 3.375 15.7746 4.775C15.7996 5 15.7246 5.25 15.5746 5.425C15.4246 5.6 15.1996 5.725 14.9746 5.75C14.4996 5.825 13.7246 5.625 13.7496 4.775Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.7746 6.475C14.5496 6.475 14.2996 6.425 14.0746 6.35C13.8496 6.275 13.6496 6.125 13.4746 5.975C13.2746 5.775 13.0246 5.4 13.0496 4.775C13.0496 4.225 12.9246 3.8 12.6746 3.525C12.3996 3.25 12.0246 3.15 11.4996 3.15C10.3746 3.15 9.89961 3.6 9.89961 4.775H8.52461C8.52461 3.675 8.24961 2.85 7.72461 2.35L7.22461 1.825L7.72461 1.325C7.77461 1.275 7.84961 1.2 7.89961 1.175C8.79961 0.399998 9.99961 0.0249977 11.4746 0.0249977C12.9496 0.0249977 14.1246 0.424998 15.0496 1.175C15.9746 1.975 16.4496 3.175 16.4496 4.775C16.4996 5.35 16.1496 6.275 15.0746 6.45C14.9746 6.45 14.8746 6.45 14.7746 6.475ZM11.4996 1.725C12.3996 1.725 13.1496 2 13.6496 2.525C14.1746 3.05 14.4496 3.8 14.4496 4.775C14.4496 4.85 14.4496 4.9 14.4746 4.95C14.5246 4.975 14.5746 5 14.6496 5.025C14.6996 5.05 14.7746 5.05 14.8246 5.025C14.8996 5.025 15.0746 5 15.0246 4.825V4.75C15.0246 3.55 14.7246 2.725 14.1246 2.2C13.4746 1.675 12.5746 1.375 11.4746 1.375C10.5746 1.375 9.79961 1.55 9.22461 1.9C9.29961 2.025 9.37461 2.175 9.47461 2.325C9.94961 1.95 10.6496 1.725 11.4996 1.725Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M6.65 11.825C6.25 12.225 5.7 12.4 4.975 12.4C3.45 12.4 2.725 11.625 2.725 10.05V4.775C2.725 3.2 3.475 2.425 4.975 2.425C5.7 2.425 6.25 2.6 6.65 3C7.05 3.4 7.225 3.975 7.225 4.75C7.225 3.45 7.575 2.5 8.225 1.825L8.1 1.675C7.325 1 6.3 0.700001 5 0.700001C3.7 0.700001 2.65 1.025 1.9 1.675C1.15 2.325 0.75 3.35 0.75 4.75V10.05C0.75 11.45 1.125 12.475 1.9 13.125C2.675 13.775 3.7 14.1 5 14.1C6.3 14.1 7.35 13.775 8.1 13.125C8.15 13.075 8.2 13.05 8.225 13C7.55 12.325 7.25 11.375 7.25 10.075C7.25 10.85 7.025 11.45 6.65 11.825Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M4.95 14.825C3.5 14.825 2.3 14.425 1.4 13.675C0.45 12.875 0 11.675 0 10.05V4.775C0 3.175 0.475 1.95 1.375 1.15C2.275 0.375 3.475 0 4.95 0C6.4 0 7.6 0.4 8.525 1.15C8.6 1.2 8.65 1.275 8.725 1.325L9.15 1.85L8.725 2.325C8.2 2.825 7.925 3.65 7.925 4.75H6.525C6.525 4.175 6.4 3.75 6.15 3.475C5.875 3.2 5.5 3.1 4.975 3.1C3.85 3.1 3.4 3.55 3.4 4.75V10.05C3.4 11.25 3.825 11.7 4.975 11.7C5.5 11.7 5.9 11.575 6.15 11.325C6.4 11.075 6.525 10.65 6.525 10.075H7.925C7.925 11.175 8.2 12 8.7 12.5L9.2 13L8.7 13.5C8.65 13.55 8.575 13.625 8.525 13.65C7.65 14.425 6.45 14.825 4.95 14.825ZM4.95 1.4C3.825 1.4 2.925 1.675 2.3 2.225C1.7 2.75 1.4 3.575 1.4 4.775V10.075C1.4 11.275 1.7 12.1 2.3 12.625C2.95 13.15 3.825 13.45 4.95 13.45C5.85 13.45 6.625 13.275 7.2 12.925C7.125 12.8 7.05 12.625 6.95 12.5C6.45 12.925 5.75 13.175 4.925 13.175C3.025 13.175 1.975 12.05 1.975 10.125V4.775C1.975 2.825 3.075 1.725 4.925 1.725C5.775 1.725 6.45 1.925 6.975 2.4C7.05 2.25 7.125 2.1 7.225 1.975C6.65 1.575 5.875 1.4 4.95 1.4Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.25 4.775V10.1C7.25 11.4 7.575 12.35 8.225 13.025C8.9 12.35 9.225 11.4 9.225 10.1V4.75C9.225 3.45 8.9 2.5 8.25 1.825C7.55 2.475 7.25 3.45 7.25 4.775Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M8.20039 13.9L7.72539 13.525C6.92539 12.725 6.52539 11.575 6.52539 10.1V4.775C6.52539 3.275 6.95039 2.15 7.75039 1.35L8.15039 0.950001L8.72539 1.35C9.52539 2.15 9.92539 3.3 9.92539 4.775V10.1C9.92539 11.6 9.50039 12.725 8.70039 13.525L8.20039 13.9ZM8.22539 3.075C8.02539 3.625 7.92539 4.2 7.92539 4.775V10.075C7.90039 10.65 8.00039 11.225 8.22539 11.775C8.42539 11.325 8.52539 10.75 8.52539 10.075V4.775C8.55039 4.175 8.45039 3.6 8.22539 3.075Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M7.2502 10.25C7.2502 10.25 7.1752 11.875 8.2252 13.025C8.6502 13.5 9.3002 13.875 10.2002 14.025C10.9002 14.15 11.4002 12.825 10.6752 12.35C10.6002 12.325 9.2502 11.875 9.2502 10.1L7.2502 10.25Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M10.2747 14.7C10.1997 14.7 10.1247 14.7 10.0747 14.675C9.09969 14.5 8.32469 14.1 7.72469 13.45C6.47469 12.125 6.54969 10.25 6.54969 10.175L6.57469 9.575L9.87469 9.3L9.94969 10.075C9.92469 11.3 10.7747 11.625 10.8747 11.65L10.9997 11.675L11.0747 11.725C11.3497 11.925 11.5497 12.225 11.6497 12.55C11.7497 12.875 11.7497 13.225 11.6247 13.55C11.4247 14.25 10.8497 14.7 10.2747 14.7ZM7.97469 10.875C8.04969 11.35 8.24969 12.025 8.72469 12.525C9.09969 12.925 9.57469 13.175 10.2247 13.3C10.2747 13.225 10.2997 13.125 10.2997 13.025C10.2997 13 10.2997 12.95 10.2747 12.95C9.84969 12.775 9.44969 12.475 9.17469 12.1C8.87469 11.725 8.67469 11.3 8.57469 10.85L7.97469 10.875Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TeamUser", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json index ec349864b61..ea357bc23bb 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Build.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" \n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Build", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json index 574a9e3624f..aabc9d25134 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/CamelCatalog.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CamelCatalog", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json index 54a31ab9208..f4c55c6b320 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Integration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Integration", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json index 68cbb354ffe..879f9425728 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationKit.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "IntegrationKit", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json index 66572c1f9a3..6741587afd6 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/IntegrationPlatform.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "IntegrationPlatform", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json index b5bb4a8cac9..5c486de7997 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/Kamelet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Kamelet", diff --git a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json index bff8d304b3b..018b9f4be1e 100644 --- a/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json +++ b/server/meshmodel/camel-k/2.0.1/v1.0.0/components/KameletBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F69923", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\"\n id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n \n .st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n .st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n .st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n .st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n \u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n \u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n \u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n \u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n \n \u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n \u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n \u003c/g\u003e\n \n \u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n \u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n \u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n \u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n \u003c/linearGradient\u003e\n \n \u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n M665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n c87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n \u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n c3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n \u003cg id=\"g4811\"\u003e\n \u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n c-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n c0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n c7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t\n\t\t.st0{fill:url(#path4805_00000150822218863323834750000017686525497165893524_);stroke:url(#path4805_00000106850555833772621040000001859913812595445634_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;}\n\t.st1{opacity:0.75;fill:url(#path4807_00000171679376225293821120000010356900763673379729_);enable-background:new ;}\n\t.st2{opacity:0.75;fill:#28170B;enable-background:new ;}\n\t.st3{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003csodipodi:namedview bordercolor=\"#666666\" borderopacity=\"1.0\" fit-margin-bottom=\"0\" fit-margin-left=\"0\" fit-margin-right=\"0\" fit-margin-top=\"0\" id=\"base\" inkscape:current-layer=\"g4767\" inkscape:cx=\"342.57641\" inkscape:cy=\"5.0030723\" inkscape:document-units=\"mm\" inkscape:pageopacity=\"0.0\" inkscape:pageshadow=\"2\" inkscape:window-height=\"2049\" inkscape:window-maximized=\"1\" inkscape:window-width=\"3726\" inkscape:window-x=\"114\" inkscape:window-y=\"55\" inkscape:zoom=\"1.4\" pagecolor=\"#ffffff\" showgrid=\"false\"\u003e\n\t\u003c/sodipodi:namedview\u003e\n\u003cg id=\"layer1\" transform=\"translate(210.45846,-18.464318)\" inkscape:groupmode=\"layer\" inkscape:label=\"Layer 1\"\u003e\n\t\u003cg id=\"g4839\" transform=\"matrix(0.31520401,0,0,0.31520401,-253.46401,-173.70098)\"\u003e\n\t\t\u003cg id=\"g4801\" transform=\"translate(-386.87395,-169.40258)\"\u003e\n\t\t\t\u003cg id=\"g4803\" transform=\"translate(216.2639,-21.04569)\"\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000015326520333869613970000015063320671423049145_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.11\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.945\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003clinearGradient id=\"path4805_00000044860135412339828290000001496951958560618124_\" gradientUnits=\"userSpaceOnUse\" x1=\"-16974.75\" y1=\"13320.9619\" x2=\"-16831.2305\" y2=\"13459.832\" gradientTransform=\"matrix(0.3746 -0.8033 -0.8033 -0.3746 17285.1816 -8433.9482)\"\u003e\n\t\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F69923\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"8.047844e-02\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\t\u003cstop offset=\"0.4187\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\t\u003c/linearGradient\u003e\n\t\t\t\t\n\t\t\t\t\t\u003ccircle id=\"path4805\" style=\"fill:url(#path4805_00000015326520333869613970000015063320671423049145_);stroke:url(#path4805_00000044860135412339828290000001496951958560618124_);stroke-width:4.432;stroke-linejoin:round;stroke-miterlimit:3.5456;\" cx=\"491.9\" cy=\"984.4\" r=\"177.2\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\t\n\t\t\t\t\u003clinearGradient id=\"path4807_00000075883525092933953110000016661509092498992033_\" gradientUnits=\"userSpaceOnUse\" x1=\"-18973.9531\" y1=\"10195.2793\" x2=\"-19041.0312\" y2=\"10100.7617\" gradientTransform=\"matrix(0.3776 -0.8098 -0.8098 -0.3776 17057.0078 -8959.9531)\"\u003e\n\t\t\t\t\u003cstop offset=\"0\" style=\"stop-color:#F6E423\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.4119\" style=\"stop-color:#F79A23\"/\u003e\n\t\t\t\t\u003cstop offset=\"0.7327\" style=\"stop-color:#E97826\"/\u003e\n\t\t\t\u003c/linearGradient\u003e\n\t\t\t\n\t\t\t\t\u003cpath id=\"path4807\" inkscape:connector-curvature=\"0\" style=\"opacity:0.75;fill:url(#path4807_00000075883525092933953110000016661509092498992033_);enable-background:new ;\" d=\"\n\t\t\t\tM665,887.8c-2.5,0-5.1,0-7.6,0.1c-3,0.1-6.9,1-11.5,2.6c77.4,58.8,105.2,164.8,57.4,257c1.6,0,3.2,0.2,4.9,0.2\n\t\t\t\tc87.4,0,160.5-60.9,179.4-142.6C832.1,939.9,756.8,887.9,665,887.8L665,887.8z\"/\u003e\n\t\t\t\u003cpath id=\"path4809\" inkscape:connector-curvature=\"0\" class=\"st2\" d=\"M645.9,890.4c-25.7,8.7-74.7,39.1-121.9,79.8\n\t\t\t\tc3.6,96.9,82.1,174.6,179.3,177.2C751.2,1055.2,723.3,949.2,645.9,890.4z\"/\u003e\n\t\t\t\u003cg id=\"g4811\"\u003e\n\t\t\t\t\u003cpath id=\"path4813\" inkscape:connector-curvature=\"0\" class=\"st3\" d=\"M713.2,856.3c-1.3-0.1-2.6,0.1-3.9,0.7\n\t\t\t\t\tc-15.9,7.9,0,39.7,0,39.7c-47.6,39.7-37.5,107.5-93.1,107.5c-30.3,0-60.4-34.8-92.2-56.2c-0.4,5-0.7,10.1-0.7,15.2\n\t\t\t\t\tc0,69.5,38.3,130,94.9,161.8c15.8-2,31.6-6,43.5-13.9c62.3-41.6,77.8-120.6,103.3-158.8c15.9-23.8,90.2-21.8,95.2-31.8\n\t\t\t\t\tc7.9-15.9-15.9-39.7-23.8-39.7h-63.5c-4.4,0-11.4-7.9-15.9-7.9h-23.8C733.2,873,722.6,856.9,713.2,856.3z\"/\u003e\n\t\t\t\u003c/g\u003e\n\t\t\u003c/g\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\"\n\t id=\"svg2343\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" inkscape:version=\"0.92.3 (2405546, 2018-03-11)\" sodipodi:docname=\"camel-1.svg\"\n\t xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 116.3 116.2\"\n\t style=\"enable-background:new 0 0 116.3 116.2;\" xml:space=\"preserve\" width='116.3' height='116.2'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{opacity:0.8;fill:#FFFFFF;enable-background:new ;}\n\t.st1{fill:#FFFFFF;}\n\t.st2{opacity:0.9;fill:#FFFFFF;enable-background:new ;}\n\t.st3{opacity:0.7;fill:#FFFFFF;enable-background:new ;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M88.4,107.8c0,0-0.1,0.1-0.1,0.1C88.3,107.8,88.4,107.8,88.4,107.8z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M38.6,35.1C38.7,35.1,38.7,35.1,38.6,35.1c1.5-0.5,2.7-0.8,3.6-0.8c0.8,0,1.6,0,2.4,0c4.5,0,9,0.4,13.3,1.2\n\t\tc-1.2-2.9-3-9,0.7-10.9c0.4-0.2,0.8-0.3,1.2-0.2c3,0.2,6.3,5.3,6.3,5.2h7.5c1.4,0,3.6,2.5,5,2.5h20c2.5,0,10,7.5,7.5,12.5\n\t\tc-0.9,1.8-8.9,2.4-16.6,3.9c9.4,6.3,17.9,14.1,25.2,22.7c-2.4,10.3-7.5,19.5-14.5,26.9c9.9-10.4,16.1-24.5,16.1-40.1\n\t\tC116.4,26,90.3,0,58.3,0C27.8,0,2.8,23.5,0.4,53.4c1.4,1,2.9,2,4.3,3.1C18.1,45.6,31.3,37.6,38.6,35.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M83.5,110.4c-0.1,0-0.1,0.1-0.2,0.1C83.4,110.5,83.5,110.4,83.5,110.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M86.1,109.1c-0.1,0-0.2,0.1-0.2,0.1C85.9,109.2,86,109.2,86.1,109.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M99.8,98.7c-0.4,0.4-0.8,0.8-1.1,1.1C99,99.5,99.4,99.1,99.8,98.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M97.9,100.6c-0.3,0.3-0.7,0.6-1,0.9C97.2,101.2,97.5,100.9,97.9,100.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M95.8,102.4c-0.3,0.2-0.6,0.5-0.9,0.7C95.2,102.9,95.5,102.7,95.8,102.4z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c-1.2,3.7-2.7,7.4-4.6,11.1c-9.5-0.3-18.5-2.8-26.4-7.1c0,0-0.1,0-0.1,0c8,4.4,17.2,7,27,7.2\n\t\tc-0.2,0-0.4,0-0.6,0C58.6,112.5,60.1,108.8,61.3,105z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M93.5,104.3c-0.2,0.1-0.4,0.3-0.5,0.4C93.1,104.6,93.3,104.4,93.5,104.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.1,68.2c-0.1-0.7-0.2-1.3-0.3-2C0.8,66.9,1,67.5,1.1,68.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.6,65.3c-0.1-0.6-0.1-1.2-0.2-1.9C0.5,64.1,0.6,64.7,0.6,65.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.3,62.3c0-0.6-0.1-1.1-0.1-1.7C0.3,61.2,0.3,61.7,0.3,62.3z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M2.4,73.9c-0.2-0.8-0.4-1.5-0.6-2.3C2,72.4,2.2,73.1,2.4,73.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M3.2,76.6c-0.3-0.8-0.5-1.6-0.8-2.4C2.7,75,2.9,75.8,3.2,76.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M1.7,71.1c-0.2-0.7-0.3-1.4-0.4-2.1C1.3,69.7,1.5,70.4,1.7,71.1z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M0.2,60.2c1.5-1.3,3-2.5,4.5-3.7c-1.4-1.1-2.9-2.2-4.3-3.1c-0.1,1.6-0.2,3.1-0.2,4.7\n\t\tC0.2,58.8,0.2,59.5,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M92.9,104.7c-1.5,1.1-3,2.1-4.5,3C90,106.8,91.5,105.8,92.9,104.7z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M88.3,107.8c-0.7,0.4-1.5,0.9-2.2,1.3C86.8,108.7,87.5,108.3,88.3,107.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M85.8,109.2c-0.7,0.4-1.5,0.8-2.3,1.2C84.3,110,85.1,109.7,85.8,109.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M98.7,99.8c-0.3,0.3-0.5,0.5-0.8,0.7C98.1,100.3,98.4,100.1,98.7,99.8z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M100.3,98.2c-0.2,0.2-0.3,0.4-0.5,0.5C100,98.5,100.1,98.3,100.3,98.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M94.9,103.1c-0.5,0.4-1,0.8-1.5,1.2C94,103.9,94.5,103.5,94.9,103.1z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M96.9,101.5c-0.3,0.3-0.7,0.6-1,0.9C96.2,102.1,96.5,101.8,96.9,101.5z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M57.3,116.2c0.3,0,0.6,0,1,0c9,0,17.5-2.1,25.1-5.7c-7.6,3.6-16.1,5.7-25.1,5.7\n\t\tC57.9,116.2,57.6,116.2,57.3,116.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M114.8,71.2c-7.3-8.6-15.8-16.5-25.2-22.7c-5.7,1.2-11.3,2.9-13.4,6.1c-4.1,6.2-7.4,15.7-12.3,25.4\n\t\tc0.8,8.2,0,16.7-2.6,25.1c-1.2,3.7-2.7,7.5-4.6,11.1c0.2,0,0.4,0,0.6,0c0.3,0,0.6,0,1,0c9,0,17.5-2,25.1-5.7c0.1,0,0.1-0.1,0.2-0.1\n\t\tc0.8-0.4,1.5-0.8,2.3-1.2c0.1,0,0.2-0.1,0.2-0.1c0.8-0.4,1.5-0.8,2.2-1.3c0,0,0.1-0.1,0.1-0.1c1.6-0.9,3.1-2,4.5-3\n\t\tc0.2-0.1,0.4-0.3,0.5-0.4c0.5-0.4,1-0.8,1.5-1.2c0.3-0.2,0.6-0.5,0.9-0.7c0.4-0.3,0.7-0.6,1-0.9c0.3-0.3,0.7-0.6,1-0.9\n\t\tc0.3-0.2,0.5-0.5,0.8-0.7c0.4-0.4,0.8-0.7,1.1-1.1c0.2-0.2,0.3-0.4,0.5-0.5C107.3,90.8,112.4,81.5,114.8,71.2z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c2-3.5,4.5-6.9,8-9.8c0,0-0.3-0.6-0.7-1.6c-4.3-0.8-8.7-1.2-13.3-1.2c-0.8,0-1.6,0-2.4,0\n\t\tc-0.9,0-2.2,0.3-3.6,0.8C43.2,38.6,47.2,42.5,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.8,66.2c0-0.3-0.1-0.6-0.1-0.9C0.7,65.6,0.7,65.9,0.8,66.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.4,63.4c0-0.4-0.1-0.7-0.1-1.1C0.4,62.7,0.4,63.1,0.4,63.4z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.2,68.9c0-0.2-0.1-0.5-0.1-0.7C1.1,68.5,1.2,68.7,1.2,68.9z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M0.2,60.2c0,0.1,0,0.2,0,0.3C0.2,60.5,0.2,60.4,0.2,60.2C0.2,60.2,0.2,60.2,0.2,60.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M1.8,71.6c0-0.2-0.1-0.3-0.1-0.5C1.7,71.3,1.7,71.4,1.8,71.6z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M2.5,74.2c0-0.1-0.1-0.2-0.1-0.3C2.4,74,2.4,74.1,2.5,74.2z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7C3.2,76.7,3.2,76.7,3.2,76.7z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M63.9,80c-4.6,9.1-10.7,18.3-20.2,24.7c-3.6,2.4-8.4,3.7-13.3,4.3c7.9,4.3,16.8,6.9,26.4,7.1\n\t\tc1.9-3.6,3.4-7.3,4.6-11.1C63.9,96.7,64.7,88.2,63.9,80z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c-3.4-4.4-7.4-8.3-12-11.8c0,0,0,0,0,0c0,0,0,0,0,0c-7.3,2.5-20.5,10.5-34,21.4\n\t\tC13.1,63,21.2,71,29.3,71C42.7,71,44,58.4,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9C50.6,46.9,50.6,46.9,50.6,46.9c-3.4-4.4-7.4-8.3-11.9-11.8c0,0,0,0,0,0\n\t\tC43.2,38.6,47.2,42.6,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M61.3,105c2.6-8.3,3.4-16.8,2.6-25.1c0,0,0,0,0,0C64.7,88.2,63.9,96.7,61.3,105z\"/\u003e\n\t\u003cpath class=\"st1\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st0\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M50.6,46.9c7.5,9.6,12.1,21,13.3,33.1c0,0,0,0,0,0C62.7,67.9,58.1,56.5,50.6,46.9\n\t\tC50.6,46.9,50.6,46.9,50.6,46.9z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "KameletBinding", diff --git a/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json b/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json index 3df22f442aa..7078d12601f 100644 --- a/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json +++ b/server/meshmodel/canary-operator/0.1.16/v1.0.0/components/Canary.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Canary", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json index 7d6ca5062f5..06afbd73546 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/CapsuleConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CapsuleConfiguration", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json index f5d331cea5d..f4f3947cb1e 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/GlobalTenantResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "GlobalTenantResource", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json index dfbf466065a..018d02bb2dd 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/ProxySetting.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json index 44edddaf40d..cd8ddd3b8e6 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/Tenant.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Tenant", diff --git a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json index 0b92b6b2494..8d846cb32ad 100644 --- a/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json +++ b/server/meshmodel/capsule/0.7.0-rc.1/v1.0.0/components/TenantResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TenantResource", diff --git a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json index bbe3639f1a4..899b3882a8f 100644 --- a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json +++ b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraDatacenter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json index 068199a752b..c4f351f764f 100644 --- a/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json +++ b/server/meshmodel/cass-operator/0.52.1/v1.0.0/components/CassandraTask.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json index ef03ba619cb..71343ec00f7 100644 --- a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json +++ b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/CDPipeline.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\" width='590.1' height='207.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CDPipeline", diff --git a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json index 787780fcd4e..82092c7da90 100644 --- a/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json +++ b/server/meshmodel/cd-pipeline-operator/2.20.0-SNAPSHOT.24/v1.0.0/components/Stage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\" width='590.1' height='207.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Stage", diff --git a/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json b/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json index 6ad2aac0402..917287a185d 100644 --- a/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json +++ b/server/meshmodel/cert-manager-csi-driver-cacerts/2024.5.17/v1.0.0/components/CAProviderClass.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#215276", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 792 792\"\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1, .cls-2 {\n fill: none;\n }\n .cls-2 {\n clip-path: url(#clip-path);\n }\n .cls-3 {\n clip-path: url(#clip-path-2);\n }\n .cls-4 {\n fill: #fff;\n }\n .cls-5 {\n fill: #326ce5;\n }\n .cls-6 {\n mask: url(#mask);\n }\n .cls-7 {\n fill: #fdfdfe;\n }\n \u003c/style\u003e\n \u003cclipPath id=\"clip-path\"\u003e\n \u003cpolygon class=\"cls-1\" points=\"-512.547 -72.522 -511.547 -72.522 -512.547 -71.522 -512.547 -72.522\"/\u003e\n \u003c/clipPath\u003e\n \u003cclipPath id=\"clip-path-2\"\u003e\n \u003cpolygon class=\"cls-2\" points=\"-514.547 -74.522 -515.547 -74.522 -514.547 -75.522 -514.547 -74.522\"/\u003e\n \u003c/clipPath\u003e\n \u003cmask id=\"mask\" x=\"95.45997\" y=\"220.56415\" width=\"1145.07974\" height=\"588.06611\" maskUnits=\"userSpaceOnUse\"\u003e\n \u003cg id=\"mask-2\" data-name=\"mask\"\u003e\n \u003cg id=\"g3823\"\u003e\n \u003cpath id=\"path3819\" d=\"M946.5066,220.56415c-162.388,0-294.033,131.64507-294.033,294.03307s131.645,294.03305,294.03305,294.03305,294.03311-131.66566,294.03311-294.033S1108.89464,220.56415,946.5066,220.56415Zm-.0722,562.49c-148.31081,0-268.35373-120.10486-268.3847-268.41564S798.41233,245.8825,946.816,246.15063s268.28159,120.39361,268.1372,268.65286S1094.72463,783.09541,946.4344,783.05412Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/mask\u003e\n \u003c/defs\u003e\n \u003cg id=\"Text\"\u003e\n \u003cg class=\"cls-3\"\u003e\n \u003cg id=\"g3878\"\u003e\n \u003cg id=\"Text_and_detail\" data-name=\"Text and detail\"\u003e\n \u003cpath id=\"Circle\" class=\"cls-4\" d=\"M382.15266,82.87846c-172.4,0-312.16,139.76-312.16,312.16,0,172.4,139.76,312.16,312.16,312.16s312.16-139.72,312.16-312.16-139.76-312.16-312.16-312.16Zm-.08,597.15994c-157.44,0-284.89-127.51-284.92-284.95,0-157.61,127.78-285.3,285.33-285,157.55005.3,284.80994,127.8,284.67005,285.22C667.01258,552.7284,539.51258,680.08839,382.07264,680.0384Z\"/\u003e\n \u003cg id=\"LETTERS\"\u003e\n \u003cpath id=\"path3851\" class=\"cls-4\" d=\"M238.15266,536.47846c-1-3.45-5.75-6.88-9.44-6.42-5.24.67-10.46,1.54-16.76,2.48,2.32-6.15,4.28-11.4,6.28-16.65,1.73-4.56-2-6.77-4.34-9.21s-4.17.64-5.76,1.9c-8.47,6.71-16.68,13.75-25.23,20.35-4.06,3.13-1,4.95.64,7.2s3.31,4.78,6.66,1.83c3.86-3.39,7.94-6.54,12-9.83.15.38.29.56.25.68-.8,2.32-1.67,4.62-2.45,6.95-1.63,4.92,1.52,8.51,6.69,7.7,2.15-.34,4.34-1,6.9.1-4.16,3.41-7.77,6.61-11.63,9.46-3.17,2.34-1.65,4.25.26,6s2.71,6.31,6.8,3q13.79-11.12,27.49-22.31C237.45264,538.93842,238.66267,538.21845,238.15266,536.47846Z\"/\u003e\n \u003cpath id=\"path3853\" class=\"cls-4\" d=\"M405.30262,200.08845c6.54,2.7,9.13,1.46,10.48-5.3.3-1.47.57-2.93.93-4.38.29-1.18,0-3.17,1.81-2.92s4.13-.12,4.79,2.58,1.48,5.09,2.22,7.63c2.08,7,3.51,8.09,10.64,8.46,2.68.14,3.28-.77,2.57-3.16-1.12-3.81-2.09-7.67-3.28-11.46-.55-1.73-1-2.75,1.37-3.74,5.78-2.44,7.34-7.68,7.75-13.07,0-6.66-4-11.53-11.48-13.53-6.08-1.62-12.32-2.63-18.48-4-2.3-.5-3.45.43-3.88,2.63-2.36,12-4.76,24.08-7.09,36.14-.31,1.63-.54,3.22,1.65,4.12Zm17.54-31c5.05-.51,9.92,2.41,9.87,5.4s-1.8,4.44-5.19,4.53c-2.09-1.76-6.94,1.1-7.65-3.37-.3-1.89-1-6.11,2.97-6.52Z\"/\u003e\n \u003cpath id=\"path3855\" class=\"cls-4\" d=\"M339.45264,591.29847c-2.84-.93-5.74-2.1-6.74,2.62-1.09,5.19-2.75,10.25-4.47,16.5-2.63-7.82-5.07-14.52-7.1-21.34-1.33-4.46-5.15-4.42-8.37-5-3.55-.58-2.91,3-3.47,5-3,10.36-5.58,20.86-8.8,31.16-1.58,5.08,2.17,4.62,4.67,5.49,2.66.91,5.47,2,6.48-2.4,1.21-5.27,2.82-10.45,4.45-16.34.67,1.54,1.13,2.42,1.44,3.34,2,6,4.09,11.93,6,17.94,1.37,4.44,5.37,4.17,8.56,4.61s2.53-3,3.06-4.81c3-10.38,5.53-20.89,8.8-31.17,1.49-4.98-1.96-4.76-4.51-5.6Z\"/\u003e\n \u003cpath id=\"path3857\" class=\"cls-4\" d=\"M580.31263,528.04847c-3.28-.47-6.51-1.44-9.80005-1.75-2.71-.25-3.39-1.19-3.48-4-.22-7-6.55005-12.74-13.43994-12.82-4.73-.13-8.35,2.24-11.25,5.56-3.61,4.13-6.71,8.7-10.33,12.82-2.46,2.81-2.15,4.55.78,6.76,8.76,6.62,17.44995,13.35,25.93994,20.3,3,2.4,4.51,2.15,6.72-.86,4-5.45,4.16-5.32-1.23-9.5-1.18005-.92-2.42-1.78-3.5-2.81-.83-.79-2.89-1.11-1.73-2.91.93994-1.45,1.75-3.35,4.16-2.86s5,.56,7.32995,1.41c5.37,2,8.71-.09,11.63-4.54,1.93005-2.89,2.03-4.26-1.8-4.8Zm-30,5.43c-.75.06-6.13-4.56-6.08-5.23.13-1.76,6.28-7.65,8-7.65,2.31006.46,4,1.61,4.18994,4.15C556.5326,526.29847,551.45264,533.37849,550.31263,533.47846Z\"/\u003e\n \u003cpath id=\"path3859\" class=\"cls-4\" d=\"M331.71265,201.07847c.35,2,1,3.6,3.49,3.21,9-1.56,18.06-2.91,27-4.77,4.72-1,1.47-4.56,1.52-7,.05-2.61-1.37-3.4-3.93-2.9-4.89.95-9.85,1.6-14.74,2.57-2.54.5-3.21-.66-3.45-2.83-.21-1.93-.49-3.43,2.3-3.74,4.13-.44,8.17-1.61,12.3-2.05,4.47-.48,3.65-3.29,3.17-6.13s-1.08-5.17-5-4.09c-3.67,1-7.56,1.16-11.26,2.09-2.6.66-3.87.5-4.41-2.54-.59-3.28,1.23-3.55,3.55-3.9,4.11-.61,8.2-1.4,12.31-2,2.63-.4,4.65-1.13,3.59-4.44-.85-2.66.36-6.86-5.13-5.72-7.81,1.63-15.68,3-23.58,4-3.78.48-4.3,2.17-3.74,5.31q3.045,17.505,6.01,34.93Z\"/\u003e\n \u003cpath id=\"path3861\" class=\"cls-4\" d=\"M465.13264,596.01844a88.49049,88.49049,0,0,1-8.92,3.07c-2.51.8-4.32,1.82-2.82,5,1.19,2.46.87,6.55,5.62,4.65.87-.35,1.8-1.17,2.65-.11.85,1.06.29,2.32-.13,3.32-1.22,2.87-3.78,4.1-6.65,4.6a6.21878,6.21878,0,0,1-6.67-3.37,32.7898,32.7898,0,0,1-4-11.2c-.93-5.83,4.62-10.93,9.91-8.38,4.36,2.1,7.64.42,11.34-.66,2.53-.74,2.54-2.25,1.08-4.09-3.38-4.26-8-5.61-13.24-5.83a22.67985,22.67985,0,0,0-15,5.6c-5,4.48-7,10.16-5,16.65,2.53,8.49,4,18,14.56,20.8,8.1,2.13,15.24-.38,21-6.12,6.23-6.24,4.72-13.51,2-20.92-1.19-3.16-2.35-4.5-5.73-3.01Z\"/\u003e\n \u003cpath id=\"path3863\" class=\"cls-4\" d=\"M527.1526,577.12849c-3.66,2.86-7.64,5.31-11.31006,8.17-2,1.56-3,1.07-4.29-.81-1.29-1.88-1.69-3,.46-4.41,3.32995-2.19,6.52-4.59,9.76-6.91,1.06006-.76,2.34-1.38,2.22-3.22a13.53972,13.53972,0,0,0-4.18994-5.8c-1.86-1.31-3.30005.69-4.75,1.69-3,2.08-6.14,4-8.94,6.34-2.33,1.94-3,.17-4.15-1.21-1.38-1.61-1.4-2.61.53-3.87,3.75-2.45,7.22-5.33,10.99994-7.71,3.1-1.94,2.43994-3.82.62-6.06-1.61-2-2.59-5-6.15-2.3-6.52,4.86-13.22,9.49-19.89,14.17-2.1,1.47-2.19,2.93-.72,5,6.9,9.57,13.71,19.2,20.54,28.83,1.24,1.74,2.45,2.43,4.49994.94q10.26-7.5,20.68994-14.75c3.27-2.27,1.29-4.16-.11-6.21-1.4-2.05-2.73-4.31-5.82-1.88Z\"/\u003e\n \u003cpath id=\"path3865\" class=\"cls-4\" d=\"M268.85267,560.89845c-1.4-1-2.88-.53-4.14.45q-15.18007,11.8-30.33,23.64c-1.33,1-2.32,2.47-.4,3.54,3.54,2,6.78,7,11.49,1.72a1.59,1.59,0,0,1,2.18-.47c3.76,2.46,7.55,4.87,11.3,7.33,1,.68.67,1.74.55,2.72-.53,4.29,2.44,9.12,6.71,9.35,4.46.23,2.36-4.48,3.76-6.69a3.001,3.001,0,0,0,.34-.94c2.6-10.65,5.2-21.31,8-32.85-1.12-4.32-6.07-5.22-9.46-7.8Zm-6.4,26.72c-7.81-4.59-7.81-4.59-1.47-9.65,1.28-1,2.6-2,4.48-3.44A56.33068,56.33068,0,0,1,262.45264,587.61842Z\"/\u003e\n \u003cpath id=\"path3867\" class=\"cls-4\" d=\"M255.94263,223.82847c5,6.94,12.68,9,20.82,6,8.46-3.06,15-11.32,14.66-18.87a20.55043,20.55043,0,0,0-1.24-5.29,2.11,2.11,0,0,0-2.13-1.73c-2.9,0-8.23,5.19-8.27,8.3-.05,4.19-2.73,6.29-6.08,7.63-3.17,1.26-6,0-7.87-2.63a73.14334,73.14334,0,0,1-5.94-9.75c-1.4-2.87-1.14-6,1.47-8.23s5.84-3.74,9.55-1.71c2.6,1.43,9.61-1,11.1-3.53,1-1.62-.28-2.53-1.09-3.43a13.88,13.88,0,0,0-10.8-4.68c-13.38.05-23.81,10.35-22.4,21.61.8,6.34,4.73,11.34,8.22,16.31Z\"/\u003e\n \u003cpath id=\"path3869\" class=\"cls-4\" d=\"M398.01264,603.60847c-3.39-8.82-5.72-10-14.79-8a3.8801,3.8801,0,0,0-3.27,2.63q-5.7,18.24-11.36,36.54c-.33,1.07-.81,2.33.47,3.17,2.73,1.8,9.9-.72,11.13-3.89.51-1.32.52-2.93,2.71-2.89,4,.08,8,0,12-.19,1.42-.06,2.3.48,2.55,1.76.77,4,3.17,5.18,6.48,4.32,6.77-.17,6.8-.19,4.58-6q-5.24-13.7601-10.5-27.45Zm-10.56,18.07c-3,0-3.44-.84-2.54-3.39,1.09-3.12,2-6.3,3.27-10.36,1.33,3.4,2.31,5.85,3.24,8.31,2.08,5.57,2.03,5.38-3.97,5.44Z\"/\u003e\n \u003cpath id=\"path3871\" class=\"cls-4\" d=\"M485.89265,229.15846c2.34,1.28,4.57,4.69,7.27.18,3.57-6,7.44-11.79,11.16-17.68,4.48-7.08,4.6-7.29,11.80005-2.76,3.82995,2.42,4.84-.19,6.44995-2.52,1.72-2.5,2.4-4.41-1-6.41q-12-7.15-23.55-14.92c-3.27-2.18-4.89-1.6-7,1.64-2.34,3.57-1.86,5.47,1.76,7.39,2.1,1.11,4.45,2.13,5.9,4.21-.74,1.19-1.34,2.19-2,3.17-4.53,7.16-8.93,14.4-13.62,21.45-2.52,3.88.39,4.91,2.83,6.25Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"New_Anchor\" data-name=\"New Anchor\"\u003e\n \u003cpath id=\"path3874\" class=\"cls-4\" d=\"M495.34266,446.89845c-2.57-10.54-5.11-20.92-7.68-31.42a3.2,3.2,0,0,0-5.33-1.56l-24.72,23.66a3.06,3.06,0,0,0,1.26,5.14c.92.26,1.82.51,2.74.7,2,.43,1.8,1.1.87,2.51a65.58921,65.58921,0,0,1-20,19.58l-.2.12a86.78041,86.78041,0,0,1-21.7,7,159.35362,159.35362,0,0,1-23.53,2.72,1.84,1.84,0,0,1-1.89929-1.77875q-.00147-.0456-.00073-.09125v-110.38a1.08,1.08,0,0,1,1.08-1.08h0c1,0,2.22.2,5.15.17,5.76-.06,11.76-.06,17.54-.4,1.88-.11,2.93-.05,4.13.85a12.35,12.35,0,0,0,16.71-1.29,12.52,12.52,0,0,0,.11-16.76,12.3,12.3,0,0,0-16.66-1.58,4.07008,4.07008,0,0,1-2.53,1.08q-12.0801-.06-24.14,0a1.90009,1.90009,0,0,1-1.39-.37v-12.62a1.79987,1.79987,0,0,1,.42-1.18,6.41962,6.41962,0,0,1,2-1.41c13-6.6,19.74-17.44,19.75-31.87,0-22.83-22.27-39.44-44.29-33.46-17.46,4.74-28.8,22.08-25.51,39.77,2.42,13,10.07,22.1,22.51,26.92a6.58893,6.58893,0,0,1,1.33.66,1.8,1.8,0,0,1,.71,1.47v10.32a1.78,1.78,0,0,1-1.77991,1.78012l-.02008-.00012c-8.65-.1-17.31-.06-26,0a5.53,5.53,0,0,1-3.31-1.12,12.24,12.24,0,0,0-16.62,1.7,12.37,12.37,0,0,0,16.73,18.07,5.08,5.08,0,0,1,3.3-1.08c8.39,0,16.79.12,25.18,0a3.19,3.19,0,0,1,2.17.46,1,1,0,0,1,.31.76v109.81a1.85,1.85,0,0,1-1.85388,1.84613q-.07315-.0002-.14612-.00611a192.44321,192.44321,0,0,1-30.22-5,92.78849,92.78849,0,0,1-17.68-6.21,1.5603,1.5603,0,0,1-.28-.16,66.87033,66.87033,0,0,1-19.54-21.38,1.38,1.38,0,0,1,1-2.16l2.65-.54a3.08,3.08,0,0,0,1.6-5.08l-23.26-25.35a3,3,0,0,0-5.13,1.14c-3.44,10.89-6.79,21.53-10.19,32.32a3.35,3.35,0,0,0,3.94,4.28l1.8-.41a5.12,5.12,0,0,1,5.69,2.64c13.38,26,33.5,44.81,60.12,56.7,10.4,4.65,14.52,6,23.5,7.37a1.77963,1.77963,0,0,1,1,.51l13.67,13.55a4.91,4.91,0,0,0,6.85,0l13.28-13a1.88009,1.88009,0,0,1,1.12-.52c13.3-1.25,19.23-4.54,33.54-11.09,22.15-10.13,39.74-27.76,51.06-49.32,1-1.92,1.88-2.15,3.58-1.58.65.22,1.31.43,2,.63a4.12,4.12,0,0,0,5.21-4.98Zm-114.1-131.83a17.72,17.72,0,0,1-17.0863-18.33182q.00284-.07909.00629-.15817c.48-10.46,9.18-18.18,19-17.43,10.34.8,17.46,9.11,16.94,18.69-.56,10.42-9.1,17.96-18.86,17.23Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"Background_wavy_outline\" data-name=\"Background wavy outline\"\u003e\n \u003cg id=\"path3838\"\u003e\n \u003cpath class=\"cls-5\" d=\"M777.74751,396.3365c0,39.89055-24.43136,75.42907-36.09539,111.38006-12.10741,37.302-13.65436,80.32774-36.25011,111.38007-22.82261,31.36171-63.41444,46.02679-94.77621,68.84939-31.05234,22.59569-57.42267,56.80386-94.71428,68.92159-35.99228,11.68462-77.27507-.11342-117.1553-.11342s-81.16308,11.798-117.145.11342c-37.302-12.11773-63.67226-46.32584-94.7246-68.92159-31.36171-22.8226-71.9536-37.48761-94.77621-68.84939-22.59569-31.042-24.14263-74.06775-36.25011-111.38007C44.17571,471.72428,19.76493,436.18582,19.76493,396.3365s24.43142-75.42907,36.09539-111.38007c12.10741-37.302,13.65436-80.32773,36.25011-111.38007,22.82261-31.35142,63.41444-46.02678,94.77621-68.83907,31.05234-22.59572,57.42261-56.81414,94.7246-68.92157,35.982-11.6846,77.26475.10313,117.145.10313s81.16308-11.78773,117.145-.10313c37.30206,12.10743,63.67226,46.32585,94.7246,68.92157,31.36177,22.81229,71.9536,37.48765,94.77621,68.83907,22.59575,31.05234,24.1427,74.07808,36.25011,111.38007C753.31615,320.90743,777.74751,356.45626,777.74751,396.3365Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"Waves\"\u003e\n \u003cg class=\"cls-6\"\u003e\n \u003cg id=\"g3847\"\u003e\n \u003cg id=\"path3841\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,377.02659c-22.21484,0-33.49121-5.31543-44.39746-10.45606-11.09472-5.22949-21.57519-10.16943-43.11816-10.16943-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-11.09473-5.23047-21.5752-10.17041-43.11915-10.17041-21.543,0-32.0205,4.93994-43.11328,10.16943-10.90332,5.14063-22.17773,10.45606-44.39209,10.45606-22.21484,0-33.48925-5.31543-44.39257-10.45606C302.50147,361.341,292.02442,356.4011,270.481,356.4011c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508s-33.48291-5.31494-44.38672-10.45508C127.48389,361.341,117.0044,356.4011,95.46,356.4011v-3c22.21582,0,33.49267,5.31592,44.398,10.457,11.09326,5.229,21.5708,10.16846,43.10742,10.16846s32.01709-4.93945,43.1123-10.16846c10.90821-5.14111,22.1875-10.457,44.40332-10.457,22.21485,0,33.48926,5.31543,44.39258,10.45606,11.09278,5.22949,21.56983,10.16943,43.11328,10.16943,21.54248,0,32.02-4.93994,43.1128-10.16943,10.90332-5.14063,22.17773-10.45606,44.39257-10.45606,22.21582,0,33.49219,5.31592,44.39844,10.457,11.09278,5.229,21.57031,10.16846,43.10742,10.16846,21.53614,0,32.01661-4.93945,43.11231-10.16846,10.9082-5.14111,22.1875-10.457,44.40332-10.457,22.21484,0,33.49121,5.31543,44.39746,10.45606,11.09473,5.22949,21.5752,10.16943,43.11816,10.16943Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"path3843\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,419.27854c-22.43847,0-33.81836-5.36426-44.82421-10.55176-10.99024-5.18066-21.37208-10.07421-42.69141-10.07421-21.32031,0-31.7041,4.89355-42.69824,10.07519-11.00489,5.1875-22.38575,10.55078-44.81739,10.55078-22.43261,0-33.81054-5.36328-44.81347-10.55078-10.99121-5.18164-21.37207-10.07519-42.69239-10.07519-21.31933,0-31.69824,4.89355-42.68652,10.07421-11.00293,5.1875-22.38037,10.55176-44.81885,10.55176-22.439,0-33.8164-5.36426-44.81884-10.55176-10.98877-5.18066-21.36768-10.07421-42.687-10.07421-21.3208,0-31.7041,4.89355-42.69775,10.07519-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078s-33.81006-5.36328-44.813-10.55078c-10.99072-5.18164-21.37207-10.07519-42.69238-10.07519v-5c22.43994,0,33.81933,5.36474,44.82471,10.55273,10.98876,5.17969,21.36767,10.07324,42.68066,10.07324s31.69482-4.89355,42.686-10.07324c11.00782-5.188,22.38965-10.55273,44.82959-10.55273,22.439,0,33.81641,5.36425,44.81885,10.55175,10.98877,5.18067,21.36768,10.07422,42.687,10.07422,21.31885,0,31.69776-4.89355,42.686-10.07422,11.00293-5.1875,22.38086-10.55175,44.81933-10.55175,22.43946,0,33.81934,5.36474,44.82422,10.55273,10.98926,5.17969,21.36817,10.07324,42.68164,10.07324,21.3125,0,31.69434-4.89355,42.68555-10.07324,11.00781-5.188,22.39063-10.55273,44.83008-10.55273,22.43848,0,33.81836,5.36425,44.82422,10.55175,10.99023,5.18067,21.37207,10.07422,42.6914,10.07422Z\"/\u003e\n \u003c/g\u003e\n \u003cg id=\"path3845\"\u003e\n \u003cpath class=\"cls-4\" d=\"M708.0293,469.78049c-22.66211,0-34.1455-5.4121-45.25-10.64648-10.88671-5.13184-21.16992-9.97852-42.26562-9.97852-21.09668,0-31.38184,4.84766-42.27149,9.9795-11.10546,5.2334-22.58886,10.6455-45.24414,10.6455-22.65625,0-34.13671-5.4121-45.24023-10.6455-10.88574-5.13184-21.16895-9.9795-42.26563-9.9795-21.0957,0-31.376,4.84668-42.26074,9.97852-11.10156,5.23438-22.58252,10.64648-45.24463,10.64648-22.66308,0-34.14306-5.4121-45.2456-10.64648-10.88428-5.13184-21.16455-9.97852-42.26026-9.97852-21.09668,0-31.38232,4.84766-42.27148,9.9795-11.105,5.2334-22.58838,10.6455-45.24414,10.6455-22.65625,0-34.13672-5.4121-45.23926-10.6455-10.88672-5.13184-21.16943-9.9795-42.26611-9.9795v-7c22.66406,0,34.14648,5.41309,45.251,10.64747,10.88428,5.13086,21.16553,9.97753,42.2544,9.97753s31.37256-4.84667,42.25976-9.97753c11.10694-5.23438,22.59229-10.64747,45.25586-10.64747,22.6626,0,34.14307,5.41211,45.24561,10.64649,10.88428,5.13184,21.165,9.97851,42.26025,9.97851,21.09473,0,31.37549-4.84667,42.26026-9.97851,11.10156-5.23438,22.582-10.64649,45.24511-10.64649,22.66407,0,34.14649,5.41309,45.251,10.64747,10.88477,5.13086,21.166,9.97753,42.25488,9.97753s31.37207-4.84667,42.25977-9.97753c11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,22.66211,0,34.14551,5.41211,45.25,10.64649,10.88672,5.13184,21.16992,9.97851,42.26562,9.97851Z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg id=\"wQjLs5.tif\"\u003e\n \u003cpath class=\"cls-7\" d=\"M69.97291,396.08172C70.6446,213.94918,216.27906,70.56717,392.5182,67.52905c187.22819-3.22757,332.834,146.93812,334.99608,324.238,2.25017,184.52244-146.15893,333.33921-328.41178,333.43561C217.223,725.29886,70.2973,578.46061,69.97291,396.08172Zm628.85858.10588c.087-165.02914-132.68641-298.09593-296.30859-300.02194C233.12872,94.17171,98.45934,230.62774,98.67461,396.5698A299.75958,299.75958,0,0,0,398.88386,696.55966C565.4402,696.503,699.11342,561.48738,698.83149,396.1876Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M412.51678,420.83544q0,27.77351.00011,55.547c.00009,4.51579.04789,4.50986,4.53561,4.31713a165.17329,165.17329,0,0,0,29.487-4.2981c16.03543-3.6372,27.73135-13.19016,36.84-26.41364.899-1.30519.94647-2.17583-.9482-2.72638-6.37557-1.85276-6.77481-3.54612-1.95345-8.21029q11.4316-11.05884,22.96284-22.01472c2.981-2.84862,5.68513-2.20684,6.67288,1.725q4.00776,15.95289,7.797,31.9604c.87882,3.70353-1.83845,6.25218-5.57439,5.41785a12.16786,12.16786,0,0,1-1.8267-.5459c-1.85224-.73389-2.9823.0209-3.87188,1.64981a133.82736,133.82736,0,0,1-12.57828,19.3174c-9.49524,11.939-20.73307,21.86926-34.218,29.00371-10.1126,5.35023-20.3709,10.5033-31.53,13.4623a36.55951,36.55951,0,0,1-8.19914,1.445c-2.50462.078-4.26165,1.35775-5.94075,3.03594-3.77927,3.77713-7.6287,7.48452-11.47795,11.1908q-3.95936,3.81219-7.93154-.05583-6.42373-6.26729-12.77642-12.607a6.788,6.788,0,0,0-3.68046-1.99465c-20.80362-4.064-38.77235-13.92633-54.96386-27.25025A122.72966,122.72966,0,0,1,292.256,453.82869c-1.79252-3.467-3.72457-4.3321-7.62975-3.56234-3.879.76461-5.91529-1.38023-4.74629-5.14457q5.10108-16.42556,10.32191-32.81382c.95065-2.98756,3.80347-3.611,5.93528-1.29452q11.97693,13.01463,23.87712,26.09993c2.15078,2.35765.90718,5.38157-1.94892,5.68573a16.07623,16.07623,0,0,0-1.85514.45367c-1.88247.43418-2.03016,1.41677-1.09155,2.96479a68.14571,68.14571,0,0,0,19.78648,21.43968c4.39344,2.99136,9.66647,4.45113,14.79768,5.88678a203.78489,203.78489,0,0,0,35.2242,6.41915c2.46668.24052,3.24724-.43626,3.26142-3.12583.03152-5.9855.01018-11.97126.01018-17.95693q.00008-46.92759-.00024-93.85519c-.00006-3.59733-.23705-3.85153-3.72235-3.85454-7.89721-.00678-15.795.04724-23.69137-.03172a12.42517,12.42517,0,0,0-6.52984,1.87989c-5.47079,3.15842-10.90349,2.513-15.6066-1.70228-3.95359-3.5436-5.09-9.6431-2.788-14.96355,2.95926-6.83927,12.14641-9.64767,18.41925-5.58938a11.37135,11.37135,0,0,0,6.50616,1.94147c7.97857-.07857,15.9584-.0228,23.93772-.03314,3.03683-.00395,3.46463-.44242,3.47361-3.45626.00783-2.63366-.11638-5.27441.03978-7.8988.12007-2.01719-.74443-3.00685-2.51544-3.76524-7.2923-3.12258-13.76888-7.34228-18.01393-14.3021-14.78963-24.2479-.19341-51.56636,24.04645-56.40073a37.12876,37.12876,0,0,1,40.17752,19.57806c8.14333,16.34855,4.16244,38.98029-15.70441,49.09212-2.784,1.417-4.08927,3.094-3.77158,6.29807a72.48632,72.48632,0,0,1,.04142,8.85219c-.03473,1.4505.55743,2.016,1.96313,2.01271,8.141-.01891,16.2821-.00684,24.42315-.01286a7.33752,7.33752,0,0,0,3.91345-1.62311,12.88346,12.88346,0,0,1,16.069,1.34006,13.52581,13.52581,0,0,1,2.45849,15.85854,13.24886,13.24886,0,0,1-14.9215,6.27536,3.39939,3.39939,0,0,1-1.32441-.51711c-4.0766-3.46512-8.93825-2.76294-13.67086-2.54561a145.182,145.182,0,0,1-16.01207.15113c-2.35869-.15209-2.93316.70685-2.92357,2.962C412.55133,383.32515,412.51681,402.08037,412.51678,420.83544ZM399.01337,312.08036c9.99882.24248,18.41706-8.17787,18.66371-18.66837a18.87076,18.87076,0,0,0-37.72842-.96046C379.6315,303.69258,387.5072,311.80135,399.01337,312.08036Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M209.05294,537.02758c-4.17115,2.65838-7.71537,6.10479-11.55114,9.18481-.62059.49828-1.23735,1.00568-1.89242,1.45567a2.72568,2.72568,0,0,1-3.36577.05443,16.46006,16.46006,0,0,1-5.19667-6.69386c-.63166-1.65422.81665-2.77233,1.98348-3.7178,5.3205-4.311,10.69275-8.5582,16.00448-12.87986q6.20452-5.04825,12.2971-10.23295c1.61614-1.38066,3.02286-1.57149,4.54943.04584.76332.80872,1.64349,1.50584,2.43847,2.28632,2.45244,2.40787,2.746,5.11525,1.46839,8.283-2.13141,5.28455-4.04769,10.65586-6.16875,16.29435,5.56028-.8,10.82407-1.50256,16.06844-2.32847a10.358,10.358,0,0,1,10.99034,5.40615c1.02021,1.92315.34677,3.28862-1.20421,4.53933q-10.689,8.61926-21.33467,17.29226c-2.40923,1.95752-4.76456,3.98257-7.20322,5.90222-2.82074,2.22031-3.90528,2.03662-6.044-.76845-.77-1.00989-1.58377-1.99084-2.43216-2.936-1.79944-2.00459-1.74822-3.5382.34-5.26187,3.49951-2.88867,7.044-5.72285,10.55594-8.59656.51045-.41766,1.48264-.74365,1.14813-1.5298-.28564-.67134-1.24914-.59206-1.947-.547-1.58713.10242-3.17194.26232-4.75214.44648-5.27235.61439-8.39667-3.10381-6.81184-8.15241.76087-2.42389,1.57437-4.83123,2.36245-7.247-.00076-.1748.00005-.34855.00086-.52237Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M124.83943,400.61821a49.9315,49.9315,0,0,1,9.28427,3.97456c16.3791,8.31538,33.77766,10.14157,51.79721,8.71766,11.63718-.91951,22.39278-4.5979,32.75543-9.69762a100.347,100.347,0,0,1,43.64423-10.81909c16.29382-.20053,31.73817,2.65256,46.40921,9.89727,7.96874,3.935,16.1333,7.504,24.96248,9.2165a114.8072,114.8072,0,0,0,30.22024,1.46737,83.07775,83.07775,0,0,0,16.43728-2.90548c1.22182-.34116,1.48115-.01838,1.53988,1.16962.19139,3.874.26313,3.996-3.41964,4.76233-22.63978,4.71138-44.76095,3.81762-66.01766-6.24183-5.101-2.41392-10.14122-5.01893-15.41254-6.99385a75.00911,75.00911,0,0,0-18.29309-4.28871c-13.72664-1.47319-27.38561-1.2009-40.77338,2.6734-7.05613,2.042-13.66044,5.24007-20.26763,8.3644a92.68582,92.68582,0,0,1-37.55286,9.04313c-11.61992.31812-23.04916-.509-34.20041-3.9568-6.93357-2.14379-13.40275-5.41861-20.0276-8.31306a1.53835,1.53835,0,0,1-1.10171-1.61859C124.88329,403.64318,124.83943,402.21256,124.83943,400.61821Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M464.49871,163.96918c-.26722,6.07518-2.07214,11.27242-8.09521,14.01345-1.78726.81337-2.11038,2.00136-1.5267,3.84864,1.29055,4.08452,2.42882,8.219,3.54669,12.35548.6111,2.26118-.09574,3.30506-2.41985,3.13249-6.32272-.46951-8.90036-.32759-11.10084-7.6666-.84316-2.81211-1.80267-5.59654-2.48866-8.44665-.75683-3.14426-2.67515-3.50892-5.63728-3.39682-1.00754.03815-1.16858.80485-1.33738,1.66094-.539,2.7335-1.11427,5.46345-1.79945,8.16333-.55076,2.17018-1.61989,4.11862-4.0467,4.5225a9.5177,9.5177,0,0,1-7.577-2.10089c-1.30493-1.03064-.72347-2.67881-.45677-4.05477q2.86242-14.76743,5.80084-29.52011c.55421-2.807,1.093-5.61767,1.70464-8.41227.3451-1.577,1.26465-2.65375,3.03621-2.31506,8.41807,1.60929,17.04086,2.49662,24.93126,6.12827C461.92977,154.13513,464.47337,158.614,464.49871,163.96918Zm-26.40908-1.01946c-.19034,3.27377,1.99669,5.87631,5.51242,5.414a13.424,13.424,0,0,1,3.05606.21483c2.06351.20651,3.961-.35826,4.89424-2.52671a4.12054,4.12054,0,0,0-1.13421-5.15448,10.72717,10.72717,0,0,0-7.69731-2.60856C439.55573,158.35407,438.07551,159.84025,438.08963,162.94972Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M342.2831,622.50718c1.43768-5.3819,2.88656-10.76087,4.3093-16.14674,1.0825-4.09775,2.22059-4.75142,6.34736-3.57514.613.17474,1.22679.34657,1.84014.52,4.33612,1.226,4.85469,2.15332,3.61925,6.51-2.75869,9.7284-5.53762,19.451-8.26828,29.1872-.53629,1.91215-.89729,3.87371-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68923,2.0617c-6.48549-.48133-8.094-1.4942-9.78068-7.04728-1.81851-5.9871-3.99838-11.8647-6.04163-17.78282a23.37683,23.37683,0,0,0-1.1367-2.2523c-1.38006,5.0849-2.68277,9.53173-3.78543,14.02762-1.8065,7.36561-2.48343,7.06972-8.85965,5.2735-4.04836-1.1405-4.6659-2.2012-3.48673-6.3449,3.31145-11.63688,6.93669-23.189,9.59838-35.0026a2.54662,2.54662,0,0,1,3.026-2.27568c5.63514.3088,7.7399,1.88912,9.51649,7.23565q3.29431,9.91381,6.60418,19.82249Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M578.60084,516.9168c8.15959.2214,13.74292,5.30449,14.76189,12.90512.55708,4.15545.70132,4.23865,4.977,4.93512,3.38175.551,6.749,1.2023,10.1052,1.89421,2.36909.4884,2.74042,1.321,1.63632,3.48821-2.52315,4.9526-6.37615,8.55329-13.14462,6.19284a43.08717,43.08717,0,0,0-7.00433-1.47141,4.60683,4.60683,0,0,0-5.13139,3.59093c-.28046,1.141.60935,1.39055,1.15035,1.834,2.45709,2.01406,4.96493,3.96667,7.469,5.92273a2.94242,2.94242,0,0,1,.67881,4.4034,35.24644,35.24644,0,0,1-3.30709,4.35463c-1.7594,1.90409-3.135,1.98746-5.22522.37019-4.52461-3.50054-8.97585-7.09574-13.4852-10.61628Q565.03873,549.222,557.9372,543.799c-3.63035-2.75853-3.8993-4.26987-1.09235-7.826,3.49565-4.42865,6.9371-8.90606,10.5875-13.20486C570.47154,519.18909,574.22216,516.73849,578.60084,516.9168Zm3.6265,16.15188c.08694-2.7894-3.35422-5.1474-5.43817-3.9451a20.14664,20.14664,0,0,0-6.69088,6.31964c-.37764.56382-.63221,1.16675-.13705,1.74642a23.347,23.347,0,0,0,5.33129,4.682.88184.88184,0,0,0,1.10117-.14762A20.748,20.748,0,0,0,582.22734,533.06868Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M339.10668,153.64432c.11363-2.74291,1.59552-3.61207,3.57964-3.929,5.02684-.80313,10.06357-1.54646,15.08378-2.38861,3.449-.57858,6.86354-1.36819,10.31791-1.90681,3.59907-.56114,4.29083.01322,5.00182,3.60458,1.20659,6.09468.94468,6.433-5.30021,7.37618-4.00721.60517-8.00728,1.26065-12.00273,1.93935-2.24427.3812-3.12081,1.57071-2.80722,3.63433.41666,2.74187,1.159,3.46113,3.73641,3.06113,4.16211-.64592,8.30616-1.42151,12.43963-2.23482,3.55887-.7003,4.634-.10081,5.46994,3.38356.18473.77.23355,1.57192.36036,2.35664.52068,3.22187-.31037,4.465-3.41809,4.98918-4.00162.675-7.9952,1.42541-12.01857,1.93595-3.898.49463-3.90641,1.94866-3.14429,5.5802.40594,1.93429,2.23337,1.78384,3.75928,1.52138,4.69931-.80821,9.38462-1.69751,14.08133-2.52135.85748-.15042,1.74326-.13772,2.61551-.20656a2.42653,2.42653,0,0,1,1.75536.63731c.57777.47573,2.01651,7.61077,1.68105,8.245-.6356,1.20159-1.85356,1.45848-3.01378,1.67022-7.97,1.45463-15.94738,2.86841-23.92264,4.29376-1.0162.18159-2.031.37405-3.05168.52683-3.15995.473-4.05143-.11-4.597-3.22293-1.63376-9.32226-3.22231-18.65244-4.82727-27.97976C340.26542,160.40793,339.649,156.80528,339.10668,153.64432Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M494.66911,622.29209c.06864,6.20874-3.30787,10.43744-8.00549,13.89373-7.67676,5.64843-18.118,5.75624-25.14853.29063-2.74761-2.136-4.31035-5.11835-5.58222-8.20351a69.40613,69.40613,0,0,1-3.7418-12.53979c-1.08255-5.28537.51914-9.8949,4.1311-13.84474a23.66265,23.66265,0,0,1,24.96263-6.097,14.12324,14.12324,0,0,1,6.80536,5.42375c1.07153,1.5588.6936,2.768-1.03548,3.3676-4.13142,1.43311-8.16994,2.86014-12.70206.95324a7.46406,7.46406,0,0,0-10.24409,7.86705,28.59581,28.59581,0,0,0,5.0581,13.73665c1.82988,2.552,4.45477,3.16537,8.12766,2.03616,3.05658-.93986,5.57427-3.78164,5.65838-6.42892.04087-1.28613-.6083-1.94647-1.90835-1.79458a8.82634,8.82634,0,0,0-1.34156.47057,6.40393,6.40393,0,0,1-1.8447.44169c-3.85177-.09261-2.98119-3.74066-4.19267-5.78787-.84561-1.429-.64258-3.15462,1.118-3.83811,4.35649-1.69128,8.76867-3.24962,13.20791-4.71126a2.67,2.67,0,0,1,3.32092,1.69882A33.77829,33.77829,0,0,1,494.66911,622.29209Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M511.82,461.30754a113.1003,113.1003,0,0,0,19.57007,2.01166c14.47072.23812,28.322-2.34648,41.41785-8.73113,11.265-5.49207,22.79255-10.23148,35.4471-11.5479,19.17828-1.99509,37.817-.33529,55.50848,7.94042,1.10977.51913,3.04551.76479,3.05048,1.93212a20.62742,20.62742,0,0,1-1.30686,6.27069c-.3231.99592-1.1997.1351-1.76239-.10936-6.69749-2.90934-13.35738-5.87255-20.58272-7.355-10.3928-2.1323-20.85372-2.29208-31.37994-1.56436-12.06035.83372-23.13,4.92071-33.812,10.2465a98.4118,98.4118,0,0,1-48.795,10.22517A112.236,112.236,0,0,1,509.063,468.2257c-1.34685-.303-1.839-.67253-.89554-1.9976a24.54364,24.54364,0,0,0,1.98993-3.5377C510.63584,461.70544,511.23694,461.12932,511.82,461.30754Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M539.29226,566.60069c.10471,1.08256-.67594,1.82043-1.63638,2.49007-3.85289,2.68633-7.71021,5.36722-11.51977,8.114-.90981.656-2.306,1.15559-2.02367,2.64944a5.734,5.734,0,0,0,2.79831,3.7095c.88221.55125,1.79565-.14575,2.59232-.72232,3.67538-2.65961,7.40512-5.24591,11.03443-7.96649a2.61628,2.61628,0,0,1,3.97361.31377c.27492.28857.59192.54166.83959.851,4.2117,5.259,3.48758,6.08035-.75294,8.8362-2.93284,1.90607-5.7429,4.00373-8.57774,6.05732-2.43639,1.76488-2.56976,2.71912-.84088,5.09337,1.43859,1.97559,2.45639,2.12514,4.82543.452,3.77032-2.66283,7.44914-5.45562,11.23005-8.10289,2.88969-2.02324,3.73905-1.82014,5.85878,1.01077,3.551,4.74225,3.49851,5.278-1.20349,8.64146q-9.716,6.94981-19.48465,13.82585c-2.55216,1.80056-3.51459,1.7145-5.33544-.82579q-10.78529-15.04633-21.4412-30.18511c-1.79073-2.54338-1.47209-3.71779,1.08861-5.54325q10.20891-7.27745,20.41615-14.55723c2.45352-1.75045,3.87205-1.59763,5.57509.887C537.72282,563.10944,539.19474,564.38862,539.29226,566.60069Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M269.5823,612.05061c.51448-1.77237-.3955-2.87961-2.03724-3.8653-3.259-1.95664-6.42392-4.075-9.57268-6.20786a2.40868,2.40868,0,0,0-3.3804.22842c-3.42369,2.913-4.65639,2.92725-8.41256.39258-.85607-.57768-1.66755-1.22107-2.51763-1.808-2.61857-1.80786-2.72391-2.58133-.15167-4.59936,10.45083-8.19906,20.95985-16.324,31.43015-24.49845a3.91185,3.91185,0,0,1,5.21041-.18158c2.38669,1.68123,5.24458,2.61126,7.412,4.67566a4.63183,4.63183,0,0,1,1.49238,4.89968c-2.62823,10.57583-5.16261,21.17493-7.75587,31.75947-.50779,2.07252-1.31206,4.04454-1.40745,6.24732-.09118,2.10585-1.47873,3.01016-3.61925,2.77765C272.36157,621.446,269.379,617.18661,269.5823,612.05061Zm6.19394-26.48052c-1.9764,1.50981-3.54294,2.68416-5.08572,3.889-5.70612,4.45631-5.62187,5.2683.65194,8.922,1.05337.61352,1.51734.55459,1.8611-.59924A57.927,57.927,0,0,0,275.77624,585.57009Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M406.00176,606.74647c4.03884-.02157,6.27334,2.15876,7.75213,5.32034,2.35509,5.035,4.13832,10.30029,6.11539,15.48668q3.77017,9.89015,7.47844,19.80379c1.09769,2.94578.59525,3.60174-2.61481,3.76369a31.211,31.211,0,0,0-3.31542.30447c-3.30428.52424-5.34622-.459-6.1992-3.6909-.66951-2.537-2.11318-2.97672-4.35953-2.85254-3.49538.19328-7.00216.30114-10.50146.25262-1.79331-.02479-2.98122.57136-3.38041,2.28013-.84254,3.60671-7.48271,6.07216-10.763,5.31489-2.13043-.49179-2.33431-2.02452-1.73692-3.9123q3.63394-11.48382,7.1857-22.99354c1.39327-4.48069,2.8359-8.94781,4.12364-13.45889.82416-2.887,2.28493-4.72149,5.527-5.02059C402.956,607.19278,404.61024,606.91111,406.00176,606.74647Zm-.6161,14.30415c-.22042.23368-.37653.32541-.41807.45414q-1.17142,3.62918-2.3177,7.26664c-1.99435,6.31941-1.50141,6.87037,5.15772,6.16658,1.86508-.19708,2.37346-.9333,1.71716-2.66849C408.12553,628.56993,406.78306,624.84892,405.38566,621.05062Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M280.41153,176.005a15.20468,15.20468,0,0,1,12.24148,5.4112c1.35232,1.54223,1.325,3.0487-.412,4.252-3.50491,2.4281-7.17987,4.00986-11.59734,2.17787-3.30867-1.37216-7.004-.12943-9.67351,2.8811-2.14456,2.41848-2.41035,5.19553-.53787,8.62222,1.63866,2.99885,3.4344,5.91873,5.28875,8.79083,1.72151,2.66632,3.92088,4.69637,7.46555,3.9816,4.21616-.85018,7.15482-3.6032,7.67421-7.44391.62242-4.60271,3.41663-7.3732,7.3511-9.23638,1.87806-.88934,3.11844-.22749,3.85724,1.79041,2.735,7.47071.23138,13.64858-4.93514,18.91025-5.11952,5.21381-11.36713,8.04-18.90012,7.34012a15.478,15.478,0,0,1-10.06457-4.94913,45.53606,45.53606,0,0,1-9.67556-14.97055c-3.6161-9.56479.2922-19.16,9.38878-24.14282A26.90939,26.90939,0,0,1,280.41153,176.005Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M130.40863,452.35641c7.9892,3.50987,15.33983,7.21147,23.45863,8.76472,19.98858,3.82417,39.5819,3.21335,58.4993-5.23486,7.18258-3.20764,14.22538-6.76867,21.73193-9.20659a98.5915,98.5915,0,0,1,32.5303-4.35744c2.21407.0404,5.03889-.84579,6.47529.54961,1.23252,1.19739-.18806,4.01143.59178,6.08819.44707,1.19037-.61669.98189-1.27854.96441-4.37794-.11558-8.75165-.16925-13.13492-.074-12.9032.28048-24.91544,3.8555-36.445,9.42258-10.21024,4.93-20.65521,9.14476-32.06778,10.447-19.64067,2.24111-38.77517.92054-56.92139-7.754-.65435-.3128-1.328-.51857-1.51775-1.34988C131.73172,457.993,131.11264,455.37451,130.40863,452.35641Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M354.38937,375.5389c-16.1197.8158-31.20515-3.06312-45.54114-10.28237-23.52439-11.84632-47.99405-13.31726-73.1069-6.209-6.57947,1.86232-12.72055,5.00113-18.86986,7.96969-14.41281,6.95768-29.64912,9.33029-45.50207,8.7917a92.27192,92.27192,0,0,1-26.51165-4.38939c-5.80962-1.95373-11.29422-4.68308-16.92528-7.06382-1.79653-.75953-1.31056-2.15031-.91727-3.18888.53169-1.404,1.45079-.11675,2.0635.16665,9.82642,4.545,19.68809,9.001,30.59454,10.29239,17.79081,2.10655,35.25044,1.45741,52.02239-5.88052,8.65453-3.78646,17.059-8.22,26.23605-10.74344,12.06079-3.31636,24.33425-3.70511,36.74035-2.93322,13.37522.83222,25.6077,5.34427,37.43274,11.19708a92.4739,92.4739,0,0,0,45.286,9.34156,109.098,109.098,0,0,0,22.44424-2.98777c.61274-.1527,1.76437-1.2094,1.98929.41927.15614,1.13059.35782,2.33359-1.39523,2.75435a95.95314,95.95314,0,0,1-16.72225,2.713C360.6112,375.68924,357.49583,375.5389,354.38937,375.5389Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M515.14274,412.4614a129.653,129.653,0,0,0,18.804,1.301,90.35589,90.35589,0,0,0,40.79067-9.45608c9.96558-4.861,20.18637-9.03313,31.34486-10.45077a126.50648,126.50648,0,0,1,33.333.15431c11.518,1.58266,21.91011,6.38507,32.28718,11.23407.87228.4076,1.45888,5.03041.705,5.64614-.73967.60414-1.34527-.1399-1.94439-.41435-6.1396-2.81235-12.22224-5.76144-18.60922-7.99006-11.14358-3.88822-22.68684-4.59252-34.36908-4.33084a88.48505,88.48505,0,0,0-38.50033,10.02683,97.64341,97.64341,0,0,1-46.74008,10.91515c-4.61617-.0872-9.23509-.27981-13.83547-.78961a2.06186,2.06186,0,0,1-2.12155-1.79777C516.01963,415.27246,515.60463,414.06742,515.14274,412.4614Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M542.52427,201.26269a9.725,9.725,0,0,1-1.50664-.48238c-.85029-.42095-1.65474-.93395-2.48264-1.40089-5.82989-3.2881-6.48853-3.44832-9.87759,1.96666-4.24122,6.77666-8.567,13.50072-12.89333,20.22363-1.92773,2.9956-3.09988,3.18921-6.00495,1.20247-.98009-.67027-1.97076-1.327-2.97949-1.953-3.19478-1.98272-3.45279-3.06237-1.384-6.33181,3.13309-4.9517,6.30909-9.87636,9.4368-14.83144,1.98941-3.15177,3.83616-6.398,5.93385-9.47442.695-1.01922.42249-1.47535-.22352-2.17837-1.548-1.68477-3.68262-2.44562-5.57919-3.565-3.23154-1.90732-3.79108-3.68447-1.92129-6.81463,2.53935-4.25106,4.06845-4.81844,7.49113-2.66075q12.56026,7.91814,25.08295,15.89578c2.99125,1.91028,3.2274,2.95169,1.3879,6.05255C545.93941,198.7061,545.13192,200.85343,542.52427,201.26269Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M671.1713,367.44238c-6.62985-2.8604-12.94561-6.06574-19.6652-8.32069-10.95736-3.67693-22.26191-4.35429-33.70478-4.15654-14.39074.24868-27.77619,4.21544-40.49231,10.6896-19.78213,10.07173-40.67789,12.0325-62.34133,8.84915-9.56437-1.40546-18.36362-5.01329-27.02684-9.04526a133.028,133.028,0,0,0-18.35369-7.35021c-1.47694-.43593-1.42014-1.01606-1.1877-2.17589.29613-1.47765,1.12362-1.151,2.09813-.8756a108.12077,108.12077,0,0,1,19.00641,7.60931c22.32488,11.19546,45.58675,12.55823,69.49159,6.74018,7.43879-1.81049,14.30514-5.325,21.19534-8.61044a92.65829,92.65829,0,0,1,38.52261-9.05772c13.43316-.27062,26.55247,1.12694,39.07752,6.29042,3.6742,1.51466,7.23539,3.30472,10.91672,4.80009C670.817,363.68556,671.68528,365.0037,671.1713,367.44238Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M501.83656,408.97006c-.29239.33824-.4002.45113-.4948.57417-2.906,3.77877-6.07339,2.65049-9.6955.9407-8.748-4.12934-17.45843-8.40152-27.05938-10.38222a111.79683,111.79683,0,0,0-29.68436-1.711,73.23082,73.23082,0,0,0-14.14267,2.14116c-1.441.37922-1.95292.0511-1.94845-1.54825.00994-3.53528-.09524-3.62961,3.41242-4.237,18.05111-3.12594,35.932-2.95845,53.45586,3.064,7.82512,2.68928,15.10325,6.67612,22.76435,9.76044C499.54032,408.01337,500.62956,408.47213,501.83656,408.97006Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M443.55191,449.61857a95.4557,95.4557,0,0,0-22.75034,2.5697c-1.73052.44631-1.97231-.16046-1.98064-1.69325-.03084-5.677-.08735-5.74386,5.17375-6.59032,15.42874-2.4823,30.768-2.33187,45.99432,1.574,2.55371.65508,2.80006,3.22425,4.41244,4.64847.54284.47955-2.95242,3.42779-3.97654,3.12428a77.76842,77.76842,0,0,0-16.13941-3.0198C450.71317,449.95553,447.13014,449.81817,443.55191,449.61857Z\"/\u003e\n \u003cpath class=\"cls-7\" d=\"M342.6917,463.0349c4.76184-.03909,9.47559.44122,14.21314.27714a97.55222,97.55222,0,0,0,23.30149-3.32314c1.24386-.35171,1.62711-.33876,1.69005,1.10484.26772,6.13809.23054,5.85568-5.63385,7.58649-7.19391,2.12324-14.01088.492-20.85536-1.27383C351.07667,466.28914,346.701,465.21552,342.6917,463.0349Z\"/\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 792 792\"\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1 {\n fill: #fff;\n }\n \u003c/style\u003e\n \u003c/defs\u003e\n \u003cpath class=\"cls-1\" d=\"M402.5229,96.16562c-154.49622-1.81855-280.08545,111.53747-300.82166,257.3861,18.18463.8946,28.32349,5.67072,38.15668,10.3064,6.42492,3.0285,12.64776,5.95764,20.92779,7.88855,17.406,1.9483,34.48792,1.18353,50.90991-6.00128,8.65455-3.78644,17.059-8.22,26.23609-10.74347,12.06073-3.31635,24.33423-3.70508,36.74029-2.93323a81.61615,81.61615,0,0,1,21.24286,4.35767,108.50422,108.50422,0,0,1,18.95868,7.43078c3.69989,1.74427,7.33338,3.45514,11.32984,4.96241a95.606,95.606,0,0,0,31.18744,3.78784A109.1017,109.1017,0,0,0,379.835,369.6196c.61273-.15271,1.76434-1.20942,1.98932.41925a5.6943,5.6943,0,0,1,.0849,1.28149c2.22662-.57587,4.30823-1.22314,6.28912-1.92468v-4.37049c-.00006-3.59729-.23706-3.8515-3.72235-3.85449-7.89722-.00677-15.79492.04724-23.69134-.03174a12.425,12.425,0,0,0-6.52985,1.87989c-5.47083,3.15844-10.9035,2.51306-15.60663-1.70227-3.95355-3.54358-5.09-9.64313-2.788-14.96357,2.95929-6.83923,12.14642-9.64764,18.41925-5.58935a11.3715,11.3715,0,0,0,6.50616,1.94147c7.97858-.07856,15.95844-.02283,23.93775-.03315,3.0368-.004,3.4646-.44244,3.47357-3.4563.00787-2.6336-.11634-5.27435.03979-7.89874.12006-2.01721-.74438-3.00689-2.51544-3.76526-7.2923-3.12256-13.76886-7.34228-18.01392-14.30212-14.78961-24.24786-.19342-51.56635,24.04645-56.4007a37.12879,37.12879,0,0,1,40.17755,19.57807c8.14331,16.34851,4.16242,38.98028-15.7044,49.0921-2.784,1.417-4.0893,3.09405-3.77161,6.2981a72.492,72.492,0,0,1,.04144,8.85217c-.03473,1.4505.55744,2.016,1.96314,2.01269,8.141-.01892,16.282-.00683,24.42309-.01288a7.33724,7.33724,0,0,0,3.91346-1.6231,12.88345,12.88345,0,0,1,16.069,1.34008,13.51634,13.51634,0,0,1,3.73883,12.27125c2.05615.32867,3.99444.713,5.83264,1.14373.321-1.30749,1.12-1.00988,2.06061-.74414a108.12148,108.12148,0,0,1,19.0064,7.60932c22.32489,11.19543,45.5868,12.55822,69.49158,6.74017,7.43884-1.81049,14.30518-5.325,21.19538-8.61041a92.65783,92.65783,0,0,1,38.52258-9.05774c13.43316-.27063,26.55249,1.127,39.07751,6.2904,3.67426,1.51471,7.23542,3.30475,10.91675,4.80011,1.9079.775,2.78882,1.93659,2.5614,3.95441a79.008,79.008,0,0,0,26.7356,6.83966C686.63056,219.19272,558.61689,98.003,402.5229,96.16562ZM297.134,216.14224c-5.11951,5.21381-11.36713,8.04-18.90009,7.34009a15.47784,15.47784,0,0,1-10.06457-4.94916,45.53557,45.53557,0,0,1-9.67554-14.97052c-3.61609-9.56476.29218-19.16,9.38873-24.14282a26.90963,26.90963,0,0,1,12.529-3.41486,15.20483,15.20483,0,0,1,12.24151,5.4112c1.3523,1.54223,1.325,3.0487-.412,4.25207-3.50494,2.4281-7.17987,4.00983-11.59735,2.17786-3.30865-1.37213-7.004-.12946-9.67352,2.8811-2.14453,2.41846-2.41034,5.1955-.53784,8.62219,1.63867,2.99884,3.43439,5.91877,5.28876,8.79084,1.72149,2.66632,3.92083,4.69641,7.46551,3.98162,4.21619-.85015,7.15485-3.60321,7.6742-7.4439.62243-4.60273,3.41662-7.37323,7.35113-9.23639,1.878-.88935,3.11841-.22748,3.85724,1.7904C304.80421,204.70266,302.30054,210.88052,297.134,216.14224Zm83.16363-27.42035c-.63562,1.20154-1.85357,1.45844-3.01379,1.67017-7.97,1.45465-15.94739,2.86847-23.92267,4.29376-1.01617.18164-2.031.37408-3.05163.52685-3.16.473-4.05146-.11-4.597-3.223-1.63373-9.3222-3.22229-18.6524-4.82727-27.97973-.61987-3.60205-1.23627-7.20472-1.77856-10.36567.11364-2.74292,1.59552-3.61206,3.57959-3.92907,5.02685-.8031,10.0636-1.54645,15.0838-2.38861,3.449-.57856,6.86352-1.36817,10.31793-1.9068,3.59906-.56116,4.29083.01324,5.00183,3.60461,1.20654,6.09467.94464,6.433-5.30023,7.37616-4.0072.60516-8.00726,1.26062-12.00275,1.93933-2.24426.38123-3.12079,1.57074-2.80719,3.63434.41663,2.74188,1.15894,3.46112,3.73639,3.06116,4.16211-.64594,8.30615-1.42151,12.43964-2.23487,3.5589-.70025,4.634-.10076,5.46991,3.38361.18475.77.23358,1.5719.36041,2.35663.52069,3.22186-.31036,4.465-3.41809,4.9892-4.00165.675-7.99524,1.42535-12.01862,1.93591-3.898.49463-3.90637,1.94867-3.14428,5.5802.40594,1.93433,2.23339,1.78381,3.75927,1.52136,4.69934-.80817,9.38465-1.69751,14.08136-2.5213.85749-.15045,1.74329-.13776,2.61548-.2066a2.42644,2.42644,0,0,1,1.75537.63733C379.19434,180.9526,380.63306,188.08767,380.29761,188.72189Zm76.1059-10.73926c-1.78729.81336-2.11041,2.00135-1.52673,3.84864,1.29059,4.08453,2.42883,8.21905,3.54669,12.35546.61114,2.26117-.0957,3.30506-2.4198,3.13251-6.32275-.46954-8.90039-.32757-11.10089-7.66662-.84314-2.81208-1.80268-5.59656-2.48865-8.44666-.75684-3.14423-2.67511-3.50891-5.63727-3.39679-1.00757.03815-1.16858.80481-1.3374,1.661-.53894,2.73346-1.11426,5.46344-1.79944,8.16333-.55078,2.17017-1.61987,4.11859-4.04669,4.52246a9.51769,9.51769,0,0,1-7.577-2.10089c-1.30493-1.03064-.72345-2.67877-.45678-4.05475q2.86248-14.76745,5.80084-29.52014c.5542-2.807,1.09308-5.61761,1.70465-8.41223.34509-1.577,1.26465-2.65375,3.03619-2.31506,8.4181,1.60925,17.0409,2.49658,24.93128,6.12823,4.89722,2.254,7.44079,6.73291,7.46619,12.08807C464.23151,170.04434,462.42658,175.2416,456.40351,177.98263Zm90.60071,18.92847c-1.06482,1.795-1.87232,3.94232-4.47992,4.35156a9.71935,9.71935,0,0,1-1.50665-.48236c-.85028-.421-1.65479-.934-2.48267-1.40088-5.82989-3.28814-6.48853-3.44836-9.87756,1.96668-4.24121,6.77661-8.567,13.50067-12.89337,20.22357-1.92768,2.9956-3.09986,3.18927-6.005,1.20251-.98-.67028-1.97076-1.327-2.97949-1.95306-3.19476-1.98273-3.45276-3.06232-1.384-6.33179,3.13311-4.95172,6.30908-9.87634,9.43682-14.83142,1.98938-3.15179,3.83613-6.39807,5.93384-9.47442.695-1.01923.42249-1.47535-.22351-2.17841-1.548-1.68475-3.68262-2.44562-5.57922-3.56494-3.23151-1.90735-3.79108-3.68451-1.92127-6.81464,2.53937-4.251,4.06842-4.81842,7.49115-2.66076q12.56022,7.91811,25.08295,15.89581C548.60755,192.76883,548.8437,193.81021,547.00422,196.9111Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M442.72083,158.28878c-3.1651.06525-4.64532,1.55146-4.63122,4.66095-.19031,3.27375,1.9967,5.87629,5.51245,5.414a13.4233,13.4233,0,0,1,3.056.21484c2.06354.20648,3.96106-.35828,4.89429-2.52673a4.1206,4.1206,0,0,0-1.13422-5.15448A10.7271,10.7271,0,0,0,442.72083,158.28878Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M170.65815,413.64822a129.16793,129.16793,0,0,0,15.26276-.33783c11.6372-.91949,22.39276-4.5979,32.75543-9.69757a100.34565,100.34565,0,0,1,43.64422-10.81909,113.83117,113.83117,0,0,1,19.41974,1.36444c15.32361,1.45148,24.56848,5.807,33.55951,10.04614,7.69544,3.628,15.09711,7.11267,26.1612,8.87708a123.233,123.233,0,0,0,22.45147.29345,83.07847,83.07847,0,0,0,16.43732-2.90545c1.18567-.33112,1.46295-.02967,1.5321,1.07373,2.23865-.58643,4.3263-1.24756,6.31659-1.96167q0-18.5137-.00012-37.02741c-7.6886,2.59864-17.02161,4.47254-30.21155,4.47254-12.75592,0-21.9013-1.754-29.44384-4.21973a100.82654,100.82654,0,0,1-19.69477-7.55035,100.04332,100.04332,0,0,0-17.45025-6.85932,98.46911,98.46911,0,0,0-20.917-1.99609c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508a102.989,102.989,0,0,1-20.34424-1.837,83.72829,83.72829,0,0,1-17.76337-3.77c-5.80963-1.95373-11.29419-4.6831-16.92523-7.06384-1.6239-.68652-1.38226-1.88654-1.03045-2.87823a81.11373,81.11373,0,0,0-25.61438-4.94733A302.73549,302.73549,0,0,0,98.70734,393.695c20.31159.49225,31.11719,5.57929,41.57734,10.51026C148.91834,408.27487,157.17866,412.16647,170.65815,413.64822Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M271.34248,598.38107c1.05334.61353,1.51733.55457,1.86108-.59924a57.927,57.927,0,0,0,2.57269-12.21173c-1.97644,1.50976-3.543,2.68414-5.08575,3.889C264.98438,593.91543,265.06867,594.72738,271.34248,598.38107Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M405.38569,621.05063c-.22046.23364-.37653.32537-.41809.4541q-1.17143,3.62923-2.31769,7.26666c-1.99439,6.3194-1.5014,6.87036,5.15771,6.16656,1.86506-.19708,2.37342-.93328,1.71717-2.66845C408.12556,628.56991,406.78309,624.8489,405.38569,621.05063Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M182.96534,462.78048c1.63122,0,3.19055-.03222,4.69781-.08813a85.18642,85.18642,0,0,0,24.70343-6.80609c7.18256-3.20764,14.22535-6.76868,21.73194-9.20661a96.4645,96.4645,0,0,1,29.90576-4.36474q2.42633-.1215,5.04828-.14874a10.32123,10.32123,0,0,1,2.45276-.003c3.28405.02417,6.33343.16181,9.175.39875q4.71259-15.14209,9.52155-30.254c.95068-2.98755,3.80347-3.611,5.9353-1.29449q11.97693,13.01458,23.87714,26.09991c2.15076,2.3576.90716,5.38153-1.949,5.68573a16.074,16.074,0,0,0-1.8551.45367c-1.88251.43415-2.03015,1.41675-1.09155,2.96479a78.22153,78.22153,0,0,0,6.64069,9.3659c9.012,3.973,19.023,7.197,36.22747,7.197a112.38881,112.38881,0,0,0,11.5636-.56018,82.83657,82.83657,0,0,0,10.65589-2.23144c.80444-.22742,1.24554-.29511,1.47625.07074,2.31494-.60828,4.46607-1.29785,6.51606-2.04309q0-21.57716-.00013-43.1543c-7.70507,2.57117-17.0559,4.41632-30.21167,4.41632-2.28534,0-4.45031-.05835-6.51745-.16376a93.54231,93.54231,0,0,1-39.017-8.95526c-5.101-2.41394-10.14118-5.019-15.41254-6.99389a74.796,74.796,0,0,0-17.36853-4.17542c-2.82831-.21912-5.87683-.33765-9.19031-.33765-21.3208,0-31.7041,4.89356-42.69775,10.0752-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078-2.93555,0-5.67749-.09393-8.25836-.2652a98.67563,98.67563,0,0,1-28.75452-4.01226c-6.93359-2.1438-13.40277-5.41864-20.02759-8.31305a1.5384,1.5384,0,0,1-1.10174-1.6186c.02795-.66265.03247-1.32788.03033-2.00842-6.8388-2.36889-14.89264-4.0885-26.14929-4.36609a305.17549,305.17549,0,0,0,3.46277,43.63263c18.33227.95374,28.59308,5.78479,38.544,10.47541C151.59522,457.9338,161.87647,462.78048,182.96534,462.78048Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M376.26252,468.6802a26.55722,26.55722,0,0,1-10.205.85212c-2.52679.16131-5.209.24816-8.07068.24816a101.21659,101.21659,0,0,1-23.58245-2.48736c.16992.11828.32934.24731.50079.36407,4.39343,2.9914,9.66644,4.45118,14.79767,5.88678a203.78708,203.78708,0,0,0,35.22418,6.41919c2.46667.24048,3.24725-.43628,3.26141-3.12585.02-3.80591.01868-7.61194.01508-11.418a80.21566,80.21566,0,0,1-9.20807,2.43976C378.26679,468.09884,377.36884,468.35367,376.26252,468.6802Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M470.42487,453.25149a77.765,77.765,0,0,0-16.1394-3.01983c-3.57233-.27613-7.15534-.41352-10.73358-.6131a95.45289,95.45289,0,0,0-22.75031,2.5697,5.04666,5.04666,0,0,1-.52472.10669,78.13,78.13,0,0,0-7.76,2.682q0,10.70278.00006,21.40545c.00006,4.51575.04786,4.50983,4.53559,4.31714a165.17283,165.17283,0,0,0,29.48706-4.29816c13.77606-3.12469,24.343-10.62445,32.82446-21.05792-2.31689-.96008-4.73236-1.85864-7.34039-2.65832A2.5241,2.5241,0,0,1,470.42487,453.25149Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M491.64625,410.48489a177.34737,177.34737,0,0,0-19.18274-8.21747c-6.9895-2.16052-15.355-3.61487-26.97132-3.61487-15.12084,0-24.73645,2.46271-32.97113,5.74256q-.00328,8.22015-.00427,16.44031,0,13.32129.00006,26.64251c2.20691-.81262,4.54071-1.57086,7.05609-2.2464.68329-.70123,1.972-.93274,4.42176-1.32684q4.81621-.7749,9.62036-1.19012c3.59967-.35865,7.53125-.55909,11.87713-.55909,17.93964,0,28.87177,3.39222,38.15784,7.4021.61054-1.06878.45886-1.80871-1.21869-2.2962-6.37555-1.85272-6.77484-3.54608-1.95343-8.21027q11.43156-11.05882,22.96283-22.01471a7.39453,7.39453,0,0,1,1.91242-1.36639,90.74841,90.74841,0,0,1-10.66956-3.9555A22.22373,22.22373,0,0,1,491.64625,410.48489Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M417.67707,293.412a18.87075,18.87075,0,0,0-37.72839-.96045c-.3172,11.24109,7.55853,19.34986,19.06469,19.62885C409.01221,312.32284,417.43043,303.90249,417.67707,293.412Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M240.43684,357.81717q-2.34394.56469-4.6955,1.2304c-6.57947,1.86231-12.72058,5.0011-18.86987,7.96967a85.487,85.487,0,0,1-13.12415,5.04156c8.98975-1.91784,15.54749-5.004,22.33032-8.20068A128.72432,128.72432,0,0,1,240.43684,357.81717Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,356.40109c-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-7.88782-3.71863-15.46937-7.28839-26.93274-9.04254-.11274.24121-.22522.4826-.35462.71564A13.249,13.249,0,0,1,446.40247,364.52a3.40047,3.40047,0,0,1-1.3244-.51715c-4.0766-3.46509-8.93823-2.76294-13.67084-2.5456a145.18227,145.18227,0,0,1-16.01208.15113c-2.3587-.1521-2.93317.70684-2.92359,2.962q.07333,17.23536.05091,34.47107c1.99322-.74255,4.08887-1.44141,6.32989-2.07428.13117-1.59051.714-1.75946,3.37146-2.21966,18.05109-3.12592,35.932-2.95844,53.45587,3.064,7.82514,2.68933,15.10322,6.67615,22.76435,9.76044,1.09625.44134,2.18554.90014,3.39251,1.39807-.06726.07782-.12261.14111-.17242.19794a74.577,74.577,0,0,0,13.60217,3.7113c-.04162-.14124-.08111-.2702-.12359-.41791a129.65539,129.65539,0,0,0,18.80407,1.301,90.35546,90.35546,0,0,0,40.79065-9.45612c9.96558-4.861,20.18641-9.03314,31.34485-10.45074a126.50578,126.50578,0,0,1,33.333.15429c11.518,1.58264,21.9101,6.38507,32.28717,11.23407.38269.17884.71021,1.169.89386,2.27613a77.88352,77.88352,0,0,0,25.73029,6.37744c.33178-5.86261.515-11.764.50488-17.70984.00348-6.57013-.22705-13.08307-.63831-19.54566-15.96423-1.30786-25.39477-5.75079-34.56134-10.07141C652.53712,361.341,642.05665,356.40109,620.51368,356.40109Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M576.78919,529.12356a20.14686,20.14686,0,0,0-6.69092,6.31964c-.37762.56385-.6322,1.16675-.137,1.7464a23.34732,23.34732,0,0,0,5.3313,4.682.88174.88174,0,0,0,1.10113-.14764,20.74806,20.74806,0,0,0,5.83368-8.65528C582.31428,530.27926,578.87312,527.92129,576.78919,529.12356Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M646.84675,452.6232c-1.21515-.33576-2.439-.64856-3.68469-.90412-10.39283-2.13232-20.8537-2.29211-31.38-1.56439-12.06036.83374-23.13,4.92072-33.812,10.24652a98.412,98.412,0,0,1-48.795,10.22516,112.23651,112.23651,0,0,1-20.11219-2.4007c-1.0849-.244-1.59979-.54034-1.272-1.33538-2.02924-.52515-3.94171-1.1037-5.7616-1.7229a119.47954,119.47954,0,0,1-7.97,11.39355c-9.49524,11.939-20.73309,21.86926-34.21795,29.00372-10.11261,5.35022-20.37091,10.5033-31.53,13.46228a36.56239,36.56239,0,0,1-8.19916,1.445c-2.50464.078-4.26166,1.35773-5.94074,3.03595-3.77929,3.7771-7.62872,7.4845-11.478,11.1908q-3.95938,3.81216-7.93152-.05585-6.4238-6.26733-12.77643-12.60693a6.78779,6.78779,0,0,0-3.68048-1.99469c-20.80359-4.064-38.77234-13.92633-54.96387-27.25025A122.73,122.73,0,0,1,292.256,453.8287a8.04176,8.04176,0,0,0-2.27118-2.92157q-2.17374-.438-4.55408-.77789c-.25946.038-.52563.08209-.8045.13708a4.65338,4.65338,0,0,1-4.06561-.69207c-2.13233-.18671-4.39295-.31452-6.80219-.37531.20618.906-.73071.74164-1.34113.72553-4.37793-.1156-8.75164-.16925-13.13488-.074q-1.16547.02537-2.32093.08759c-12.56323,1.5719-20.48614,5.30139-28.752,9.197-9.23547,4.35235-18.7392,8.82519-34.70685,10.20892-.9057.14124-1.81518.27136-2.733.3761-19.64069,2.24109-38.77521.92053-56.92139-7.754-.65436-.31281-1.328-.51855-1.51776-1.34991-.33179-1.45343-.67169-2.913-1.02692-4.43244a78.00412,78.00412,0,0,0-27.96411-6.77826,299.7383,299.7383,0,0,0,295.54444,247.1543c141.47577-.04816,259.20587-97.47815,291.28753-228.12329-11.74224-1.93024-19.66131-5.65827-27.39209-9.30237A113.2795,113.2795,0,0,0,646.84675,452.6232ZM216.93623,571.919c-2.82074,2.22028-3.90528,2.03662-6.04407-.76843-.77-1.00989-1.58374-1.99084-2.43213-2.936-1.79944-2.00458-1.74823-3.53821.34-5.26191,3.49952-2.88867,7.04395-5.72284,10.55591-8.59655.51044-.41767,1.48267-.74366,1.14814-1.52979-.28565-.67132-1.24915-.592-1.947-.54706-1.58715.10242-3.17193.26233-4.75213.44648-5.27234.61444-8.39667-3.10376-6.81183-8.15241.76086-2.42389,1.57434-4.83118,2.36243-7.247-.00074-.1748.00006-.34857.00085-.5224l-.30347.22363c-4.17114,2.65839-7.71533,6.1048-11.55114,9.18482-.62055.49829-1.23731,1.00568-1.8924,1.45569a2.72573,2.72573,0,0,1-3.36578.05444,16.46026,16.46026,0,0,1-5.19666-6.69391c-.63165-1.65417.81665-2.77234,1.98346-3.71777,5.3205-4.311,10.69275-8.55823,16.00452-12.87988q6.20452-5.04822,12.29706-10.23291c1.61615-1.38068,3.02289-1.57154,4.54944.04583.76336.80872,1.64349,1.5058,2.43847,2.28632,2.45246,2.40784,2.746,5.11523,1.46839,8.283-2.13141,5.28454-4.04767,10.65582-6.16877,16.29431,5.56031-.8,10.8241-1.50256,16.06849-2.32843a10.35793,10.35793,0,0,1,10.99029,5.40613c1.02026,1.92315.3468,3.28863-1.20416,4.5393q-10.689,8.61933-21.33472,17.2923C221.73023,567.97427,219.37489,569.9993,216.93623,571.919Zm72.11889,9.16742c-2.62823,10.57587-5.1626,21.17493-7.75586,31.75946-.50781,2.07257-1.31207,4.04456-1.40747,6.24738-.09118,2.10583-1.47876,3.01013-3.61926,2.77759-3.911-.42481-6.89349-4.68421-6.69025-9.82019.51453-1.7724-.39551-2.87964-2.03723-3.86536-3.259-1.9566-6.42389-4.07495-9.57269-6.20783a2.40866,2.40866,0,0,0-3.38037.2284c-3.42371,2.913-4.65637,2.92724-8.4126.39258-.856-.57764-1.66754-1.22107-2.51758-1.808-2.61859-1.80786-2.72394-2.5813-.15167-4.59936,10.4508-8.199,20.95984-16.324,31.43011-24.49842a3.91184,3.91184,0,0,1,5.21045-.18158c2.38666,1.68122,5.24457,2.61127,7.41205,4.67566A4.63191,4.63191,0,0,1,289.05512,581.08639Zm69.34406,28.72895c-2.75873,9.72839-5.53766,19.45092-8.26831,29.18719-.53626,1.91211-.89728,3.87372-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68921,2.0617c-6.48553-.48132-8.094-1.4942-9.7807-7.0473-1.81854-5.98712-3.99835-11.86469-6.04162-17.78284a23.37065,23.37065,0,0,0-1.13672-2.25226c-1.38007,5.0849-2.68274,9.53174-3.7854,14.02759-1.80652,7.3656-2.48346,7.06977-8.85968,5.2735-4.04834-1.1405-4.66589-2.20117-3.4867-6.34491,3.31141-11.63684,6.93665-23.189,9.59833-35.00256a2.5467,2.5467,0,0,1,3.026-2.2757c5.63513.30878,7.73993,1.8891,9.51648,7.23566q3.29434,9.91379,6.60419,19.82251l.517-.02533c1.43768-5.3819,2.88659-10.76087,4.30932-16.14673,1.08246-4.09778,2.22059-4.75146,6.34736-3.57513.613.17474,1.2268.34655,1.84014.52C359.116,604.53134,359.63459,605.45865,358.39918,609.81534Zm66.33374,41.3056a31.21624,31.21624,0,0,0-3.31543.3045c-3.30426.52423-5.34619-.459-6.19922-3.69092-.6695-2.53692-2.11316-2.97674-4.3595-2.85253-3.49542.19329-7.0022.30114-10.50146.25262-1.79334-.02478-2.9812.57135-3.38044,2.28009-.84252,3.60675-7.48266,6.07221-10.763,5.31494-2.13043-.49182-2.33429-2.02453-1.73687-3.91229q3.6339-11.48382,7.18567-22.99359c1.39331-4.48065,2.83593-8.94776,4.12365-13.45886.82416-2.887,2.28492-4.7215,5.527-5.02057,1.6427-.15155,3.29694-.43323,4.68848-.59784,4.03882-.02161,6.27331,2.15875,7.75213,5.32031,2.355,5.035,4.13831,10.30029,6.11536,15.48669q3.77024,9.89008,7.47845,19.80378C428.44544,650.30307,427.943,650.959,424.73292,651.12094Zm61.93072-14.93512c-7.67676,5.64844-18.118,5.75622-25.14856.29059-2.74762-2.136-4.31036-5.11835-5.58221-8.20349a69.40878,69.40878,0,0,1-3.74182-12.5398c-1.08252-5.28534.51916-9.8949,4.1311-13.84473a23.66261,23.66261,0,0,1,24.96265-6.097,14.1232,14.1232,0,0,1,6.80536,5.42371c1.07153,1.55883.6936,2.768-1.03547,3.36761-4.1314,1.43311-8.16992,2.86017-12.70208.95325a7.46405,7.46405,0,0,0-10.24408,7.86706,28.5953,28.5953,0,0,0,5.0581,13.73664c1.8299,2.552,4.45478,3.16534,8.12763,2.03613,3.05664-.93982,5.57428-3.78162,5.65838-6.4289.0409-1.28613-.60827-1.94647-1.90832-1.79455a8.82338,8.82338,0,0,0-1.34155.47052,6.40346,6.40346,0,0,1-1.84473.44171c-3.85175-.09259-2.9812-3.74066-4.19263-5.78784-.84564-1.429-.64258-3.15466,1.118-3.83814,4.35645-1.69128,8.76868-3.24963,13.20789-4.71124a2.67,2.67,0,0,1,3.32092,1.69879,33.7795,33.7795,0,0,1,3.35694,13.06592C494.73774,628.50082,491.36121,632.72952,486.66364,636.18582Zm69.22626-38.1579q-9.716,6.94986-19.48462,13.82587c-2.55218,1.8006-3.51459,1.71454-5.33545-.82575q-10.78527-15.04641-21.44122-30.18512c-1.79071-2.54339-1.472-3.71783,1.08862-5.54327q10.209-7.27743,20.41614-14.55725c2.45355-1.75043,3.87207-1.5976,5.57507.887,1.01441,1.48,2.48627,2.75916,2.5838,4.97125.10474,1.08259-.6759,1.82044-1.63635,2.49006-3.8529,2.68634-7.7102,5.36724-11.51977,8.11407-.90979.656-2.306,1.15558-2.02369,2.64941a5.73405,5.73405,0,0,0,2.79834,3.70954c.88221.55121,1.7956-.14575,2.59229-.72235,3.67541-2.65961,7.40515-5.24591,11.03442-7.96649a2.61631,2.61631,0,0,1,3.97364.31378c.2749.28857.59191.54168.8396.851,4.21167,5.259,3.48754,6.08032-.75293,8.83618-2.93287,1.90607-5.74292,4.00373-8.57776,6.05731-2.4364,1.7649-2.56977,2.71912-.84088,5.09339,1.43859,1.97558,2.45636,2.12512,4.82543.452,3.77033-2.66284,7.44916-5.45562,11.23005-8.1029,2.88971-2.02319,3.739-1.82013,5.85876,1.0108C560.64436,594.12875,560.59193,594.66452,555.8899,598.02792Zm54.19134-57.88849c-2.52319,4.95264-6.37615,8.55329-13.14465,6.19287a43.08247,43.08247,0,0,0-7.00433-1.47143,4.60675,4.60675,0,0,0-5.13135,3.59094c-.28046,1.141.60931,1.39056,1.15033,1.834,2.45709,2.014,4.9649,3.96668,7.46906,5.92273a2.94245,2.94245,0,0,1,.67877,4.40339,35.24864,35.24864,0,0,1-3.30707,4.35467c-1.7594,1.904-3.135,1.98743-5.22522.37018-4.52466-3.50055-8.97589-7.09577-13.48523-10.61627Q565.03877,549.222,557.9372,543.799c-3.63037-2.75855-3.89929-4.2699-1.09234-7.82605,3.49566-4.42865,6.93707-8.90607,10.58752-13.20484,3.03918-3.579,6.7898-6.0296,11.16846-5.85131,8.1596.22143,13.74292,5.3045,14.7619,12.90515.55707,4.15545.70129,4.23864,4.977,4.93512,3.38171.551,6.749,1.20227,10.10516,1.89416C610.814,537.13962,611.18531,537.9722,610.08124,540.13943Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,398.65255c-20.44885,0-30.837,4.502-41.35242,9.44184-.05877.02972-.1181.05737-.17682.08722-2.29156,1.16473-4.60614,2.228-6.93908,3.21075-9.48011,4.20923-20.47535,7.88617-39.04731,7.88617a99.68618,99.68618,0,0,1-23.72845-2.55432,6.72887,6.72887,0,0,1,.844,2.03717q4.00782,15.95288,7.797,31.96039c.87878,3.70355-1.83844,6.2522-5.5744,5.41785a12.16764,12.16764,0,0,1-1.82672-.5459c-1.85224-.73389-2.9823.02093-3.87189,1.64984-.32111.588-.64917,1.17145-.97632,1.75549,7.04968,2.2511,15.48694,3.78143,27.33679,3.78143,21.08887,0,31.37207-4.84668,42.25977-9.97753,11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,4.33746,0,8.26263.19959,11.85681.55695a92.46681,92.46681,0,0,1,31.39307,8.26813c1.10974.51916,3.04547.76483,3.05047,1.93213.00055.12573-.00866.252-.01275.37805,7.28058,3.42523,14.45874,6.6546,24.96331,8.31848a299.5184,299.5184,0,0,0,6.25483-42.72559c-16.07624-1.32776-25.57868-5.80371-34.81433-10.15686C652.21485,403.54611,641.833,398.65255,620.51368,398.65255Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M741.65211,284.95639c-12.10743-37.30194-13.65436-80.3277-36.25013-111.38007-22.82257-31.35138-63.41442-46.02673-94.77618-68.83905-31.05231-22.5957-57.42255-56.81415-94.72461-68.92157-35.98187-11.68457-77.26471.10315-117.145.10315s-81.163-11.78772-117.145-.10315c-37.30194,12.10742-63.67224,46.32587-94.72455,68.92157-31.36181,22.81232-71.95361,37.48767-94.77624,68.83905-22.59576,31.05237-24.1427,74.07813-36.25012,111.38007-11.66394,35.95105-36.0954,71.53076-36.0954,111.38006,0,39.84937,24.41083,75.38782,36.0954,111.38007,12.10748,37.31232,13.65442,80.33807,36.25012,111.38007,22.82263,31.36181,63.41449,46.02679,94.77624,68.84942,31.05231,22.59577,57.42261,56.80383,94.72455,68.92157,35.98194,11.68463,77.26477-.1134,117.145-.1134s81.163,11.798,117.15528.1134c37.29162-12.11774,63.662-46.32587,94.71429-68.92157,31.36176-22.82263,71.95361-37.48767,94.77618-68.84942,22.59577-31.05231,24.1427-74.07807,36.25013-111.38007,11.66406-35.951,36.09539-71.4895,36.09539-111.38007C777.7475,356.45627,753.31617,320.90744,741.65211,284.95639ZM399.10249,725.20266c-181.87952.0962-328.80518-146.74206-329.12958-329.121C70.6446,213.94919,216.27906,70.56717,392.5182,67.529c187.22821-3.22754,332.834,146.93811,334.99609,324.238C729.76447,576.28952,581.35535,725.10629,399.10249,725.20266Z\"/\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"svg3881\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 792 792\" width='792' height='792'\u003e\n \u003cdefs\u003e\n \u003cstyle\u003e\n .cls-1 {\n fill: #fff;\n }\n \u003c/style\u003e\n \u003c/defs\u003e\n \u003cpath class=\"cls-1\" d=\"M402.5229,96.16562c-154.49622-1.81855-280.08545,111.53747-300.82166,257.3861,18.18463.8946,28.32349,5.67072,38.15668,10.3064,6.42492,3.0285,12.64776,5.95764,20.92779,7.88855,17.406,1.9483,34.48792,1.18353,50.90991-6.00128,8.65455-3.78644,17.059-8.22,26.23609-10.74347,12.06073-3.31635,24.33423-3.70508,36.74029-2.93323a81.61615,81.61615,0,0,1,21.24286,4.35767,108.50422,108.50422,0,0,1,18.95868,7.43078c3.69989,1.74427,7.33338,3.45514,11.32984,4.96241a95.606,95.606,0,0,0,31.18744,3.78784A109.1017,109.1017,0,0,0,379.835,369.6196c.61273-.15271,1.76434-1.20942,1.98932.41925a5.6943,5.6943,0,0,1,.0849,1.28149c2.22662-.57587,4.30823-1.22314,6.28912-1.92468v-4.37049c-.00006-3.59729-.23706-3.8515-3.72235-3.85449-7.89722-.00677-15.79492.04724-23.69134-.03174a12.425,12.425,0,0,0-6.52985,1.87989c-5.47083,3.15844-10.9035,2.51306-15.60663-1.70227-3.95355-3.54358-5.09-9.64313-2.788-14.96357,2.95929-6.83923,12.14642-9.64764,18.41925-5.58935a11.3715,11.3715,0,0,0,6.50616,1.94147c7.97858-.07856,15.95844-.02283,23.93775-.03315,3.0368-.004,3.4646-.44244,3.47357-3.4563.00787-2.6336-.11634-5.27435.03979-7.89874.12006-2.01721-.74438-3.00689-2.51544-3.76526-7.2923-3.12256-13.76886-7.34228-18.01392-14.30212-14.78961-24.24786-.19342-51.56635,24.04645-56.4007a37.12879,37.12879,0,0,1,40.17755,19.57807c8.14331,16.34851,4.16242,38.98028-15.7044,49.0921-2.784,1.417-4.0893,3.09405-3.77161,6.2981a72.492,72.492,0,0,1,.04144,8.85217c-.03473,1.4505.55744,2.016,1.96314,2.01269,8.141-.01892,16.282-.00683,24.42309-.01288a7.33724,7.33724,0,0,0,3.91346-1.6231,12.88345,12.88345,0,0,1,16.069,1.34008,13.51634,13.51634,0,0,1,3.73883,12.27125c2.05615.32867,3.99444.713,5.83264,1.14373.321-1.30749,1.12-1.00988,2.06061-.74414a108.12148,108.12148,0,0,1,19.0064,7.60932c22.32489,11.19543,45.5868,12.55822,69.49158,6.74017,7.43884-1.81049,14.30518-5.325,21.19538-8.61041a92.65783,92.65783,0,0,1,38.52258-9.05774c13.43316-.27063,26.55249,1.127,39.07751,6.2904,3.67426,1.51471,7.23542,3.30475,10.91675,4.80011,1.9079.775,2.78882,1.93659,2.5614,3.95441a79.008,79.008,0,0,0,26.7356,6.83966C686.63056,219.19272,558.61689,98.003,402.5229,96.16562ZM297.134,216.14224c-5.11951,5.21381-11.36713,8.04-18.90009,7.34009a15.47784,15.47784,0,0,1-10.06457-4.94916,45.53557,45.53557,0,0,1-9.67554-14.97052c-3.61609-9.56476.29218-19.16,9.38873-24.14282a26.90963,26.90963,0,0,1,12.529-3.41486,15.20483,15.20483,0,0,1,12.24151,5.4112c1.3523,1.54223,1.325,3.0487-.412,4.25207-3.50494,2.4281-7.17987,4.00983-11.59735,2.17786-3.30865-1.37213-7.004-.12946-9.67352,2.8811-2.14453,2.41846-2.41034,5.1955-.53784,8.62219,1.63867,2.99884,3.43439,5.91877,5.28876,8.79084,1.72149,2.66632,3.92083,4.69641,7.46551,3.98162,4.21619-.85015,7.15485-3.60321,7.6742-7.4439.62243-4.60273,3.41662-7.37323,7.35113-9.23639,1.878-.88935,3.11841-.22748,3.85724,1.7904C304.80421,204.70266,302.30054,210.88052,297.134,216.14224Zm83.16363-27.42035c-.63562,1.20154-1.85357,1.45844-3.01379,1.67017-7.97,1.45465-15.94739,2.86847-23.92267,4.29376-1.01617.18164-2.031.37408-3.05163.52685-3.16.473-4.05146-.11-4.597-3.223-1.63373-9.3222-3.22229-18.6524-4.82727-27.97973-.61987-3.60205-1.23627-7.20472-1.77856-10.36567.11364-2.74292,1.59552-3.61206,3.57959-3.92907,5.02685-.8031,10.0636-1.54645,15.0838-2.38861,3.449-.57856,6.86352-1.36817,10.31793-1.9068,3.59906-.56116,4.29083.01324,5.00183,3.60461,1.20654,6.09467.94464,6.433-5.30023,7.37616-4.0072.60516-8.00726,1.26062-12.00275,1.93933-2.24426.38123-3.12079,1.57074-2.80719,3.63434.41663,2.74188,1.15894,3.46112,3.73639,3.06116,4.16211-.64594,8.30615-1.42151,12.43964-2.23487,3.5589-.70025,4.634-.10076,5.46991,3.38361.18475.77.23358,1.5719.36041,2.35663.52069,3.22186-.31036,4.465-3.41809,4.9892-4.00165.675-7.99524,1.42535-12.01862,1.93591-3.898.49463-3.90637,1.94867-3.14428,5.5802.40594,1.93433,2.23339,1.78381,3.75927,1.52136,4.69934-.80817,9.38465-1.69751,14.08136-2.5213.85749-.15045,1.74329-.13776,2.61548-.2066a2.42644,2.42644,0,0,1,1.75537.63733C379.19434,180.9526,380.63306,188.08767,380.29761,188.72189Zm76.1059-10.73926c-1.78729.81336-2.11041,2.00135-1.52673,3.84864,1.29059,4.08453,2.42883,8.21905,3.54669,12.35546.61114,2.26117-.0957,3.30506-2.4198,3.13251-6.32275-.46954-8.90039-.32757-11.10089-7.66662-.84314-2.81208-1.80268-5.59656-2.48865-8.44666-.75684-3.14423-2.67511-3.50891-5.63727-3.39679-1.00757.03815-1.16858.80481-1.3374,1.661-.53894,2.73346-1.11426,5.46344-1.79944,8.16333-.55078,2.17017-1.61987,4.11859-4.04669,4.52246a9.51769,9.51769,0,0,1-7.577-2.10089c-1.30493-1.03064-.72345-2.67877-.45678-4.05475q2.86248-14.76745,5.80084-29.52014c.5542-2.807,1.09308-5.61761,1.70465-8.41223.34509-1.577,1.26465-2.65375,3.03619-2.31506,8.4181,1.60925,17.0409,2.49658,24.93128,6.12823,4.89722,2.254,7.44079,6.73291,7.46619,12.08807C464.23151,170.04434,462.42658,175.2416,456.40351,177.98263Zm90.60071,18.92847c-1.06482,1.795-1.87232,3.94232-4.47992,4.35156a9.71935,9.71935,0,0,1-1.50665-.48236c-.85028-.421-1.65479-.934-2.48267-1.40088-5.82989-3.28814-6.48853-3.44836-9.87756,1.96668-4.24121,6.77661-8.567,13.50067-12.89337,20.22357-1.92768,2.9956-3.09986,3.18927-6.005,1.20251-.98-.67028-1.97076-1.327-2.97949-1.95306-3.19476-1.98273-3.45276-3.06232-1.384-6.33179,3.13311-4.95172,6.30908-9.87634,9.43682-14.83142,1.98938-3.15179,3.83613-6.39807,5.93384-9.47442.695-1.01923.42249-1.47535-.22351-2.17841-1.548-1.68475-3.68262-2.44562-5.57922-3.56494-3.23151-1.90735-3.79108-3.68451-1.92127-6.81464,2.53937-4.251,4.06842-4.81842,7.49115-2.66076q12.56022,7.91811,25.08295,15.89581C548.60755,192.76883,548.8437,193.81021,547.00422,196.9111Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M442.72083,158.28878c-3.1651.06525-4.64532,1.55146-4.63122,4.66095-.19031,3.27375,1.9967,5.87629,5.51245,5.414a13.4233,13.4233,0,0,1,3.056.21484c2.06354.20648,3.96106-.35828,4.89429-2.52673a4.1206,4.1206,0,0,0-1.13422-5.15448A10.7271,10.7271,0,0,0,442.72083,158.28878Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M170.65815,413.64822a129.16793,129.16793,0,0,0,15.26276-.33783c11.6372-.91949,22.39276-4.5979,32.75543-9.69757a100.34565,100.34565,0,0,1,43.64422-10.81909,113.83117,113.83117,0,0,1,19.41974,1.36444c15.32361,1.45148,24.56848,5.807,33.55951,10.04614,7.69544,3.628,15.09711,7.11267,26.1612,8.87708a123.233,123.233,0,0,0,22.45147.29345,83.07847,83.07847,0,0,0,16.43732-2.90545c1.18567-.33112,1.46295-.02967,1.5321,1.07373,2.23865-.58643,4.3263-1.24756,6.31659-1.96167q0-18.5137-.00012-37.02741c-7.6886,2.59864-17.02161,4.47254-30.21155,4.47254-12.75592,0-21.9013-1.754-29.44384-4.21973a100.82654,100.82654,0,0,1-19.69477-7.55035,100.04332,100.04332,0,0,0-17.45025-6.85932,98.46911,98.46911,0,0,0-20.917-1.99609c-21.54443,0-32.02636,4.94043-43.124,10.17041-10.90625,5.14014-22.1831,10.45508-44.3916,10.45508a102.989,102.989,0,0,1-20.34424-1.837,83.72829,83.72829,0,0,1-17.76337-3.77c-5.80963-1.95373-11.29419-4.6831-16.92523-7.06384-1.6239-.68652-1.38226-1.88654-1.03045-2.87823a81.11373,81.11373,0,0,0-25.61438-4.94733A302.73549,302.73549,0,0,0,98.70734,393.695c20.31159.49225,31.11719,5.57929,41.57734,10.51026C148.91834,408.27487,157.17866,412.16647,170.65815,413.64822Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M271.34248,598.38107c1.05334.61353,1.51733.55457,1.86108-.59924a57.927,57.927,0,0,0,2.57269-12.21173c-1.97644,1.50976-3.543,2.68414-5.08575,3.889C264.98438,593.91543,265.06867,594.72738,271.34248,598.38107Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M405.38569,621.05063c-.22046.23364-.37653.32537-.41809.4541q-1.17143,3.62923-2.31769,7.26666c-1.99439,6.3194-1.5014,6.87036,5.15771,6.16656,1.86506-.19708,2.37342-.93328,1.71717-2.66845C408.12556,628.56991,406.78309,624.8489,405.38569,621.05063Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M182.96534,462.78048c1.63122,0,3.19055-.03222,4.69781-.08813a85.18642,85.18642,0,0,0,24.70343-6.80609c7.18256-3.20764,14.22535-6.76868,21.73194-9.20661a96.4645,96.4645,0,0,1,29.90576-4.36474q2.42633-.1215,5.04828-.14874a10.32123,10.32123,0,0,1,2.45276-.003c3.28405.02417,6.33343.16181,9.175.39875q4.71259-15.14209,9.52155-30.254c.95068-2.98755,3.80347-3.611,5.9353-1.29449q11.97693,13.01458,23.87714,26.09991c2.15076,2.3576.90716,5.38153-1.949,5.68573a16.074,16.074,0,0,0-1.8551.45367c-1.88251.43415-2.03015,1.41675-1.09155,2.96479a78.22153,78.22153,0,0,0,6.64069,9.3659c9.012,3.973,19.023,7.197,36.22747,7.197a112.38881,112.38881,0,0,0,11.5636-.56018,82.83657,82.83657,0,0,0,10.65589-2.23144c.80444-.22742,1.24554-.29511,1.47625.07074,2.31494-.60828,4.46607-1.29785,6.51606-2.04309q0-21.57716-.00013-43.1543c-7.70507,2.57117-17.0559,4.41632-30.21167,4.41632-2.28534,0-4.45031-.05835-6.51745-.16376a93.54231,93.54231,0,0,1-39.017-8.95526c-5.101-2.41394-10.14118-5.019-15.41254-6.99389a74.796,74.796,0,0,0-17.36853-4.17542c-2.82831-.21912-5.87683-.33765-9.19031-.33765-21.3208,0-31.7041,4.89356-42.69775,10.0752-11.00537,5.1875-22.38574,10.55078-44.81787,10.55078-2.93555,0-5.67749-.09393-8.25836-.2652a98.67563,98.67563,0,0,1-28.75452-4.01226c-6.93359-2.1438-13.40277-5.41864-20.02759-8.31305a1.5384,1.5384,0,0,1-1.10174-1.6186c.02795-.66265.03247-1.32788.03033-2.00842-6.8388-2.36889-14.89264-4.0885-26.14929-4.36609a305.17549,305.17549,0,0,0,3.46277,43.63263c18.33227.95374,28.59308,5.78479,38.544,10.47541C151.59522,457.9338,161.87647,462.78048,182.96534,462.78048Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M376.26252,468.6802a26.55722,26.55722,0,0,1-10.205.85212c-2.52679.16131-5.209.24816-8.07068.24816a101.21659,101.21659,0,0,1-23.58245-2.48736c.16992.11828.32934.24731.50079.36407,4.39343,2.9914,9.66644,4.45118,14.79767,5.88678a203.78708,203.78708,0,0,0,35.22418,6.41919c2.46667.24048,3.24725-.43628,3.26141-3.12585.02-3.80591.01868-7.61194.01508-11.418a80.21566,80.21566,0,0,1-9.20807,2.43976C378.26679,468.09884,377.36884,468.35367,376.26252,468.6802Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M470.42487,453.25149a77.765,77.765,0,0,0-16.1394-3.01983c-3.57233-.27613-7.15534-.41352-10.73358-.6131a95.45289,95.45289,0,0,0-22.75031,2.5697,5.04666,5.04666,0,0,1-.52472.10669,78.13,78.13,0,0,0-7.76,2.682q0,10.70278.00006,21.40545c.00006,4.51575.04786,4.50983,4.53559,4.31714a165.17283,165.17283,0,0,0,29.48706-4.29816c13.77606-3.12469,24.343-10.62445,32.82446-21.05792-2.31689-.96008-4.73236-1.85864-7.34039-2.65832A2.5241,2.5241,0,0,1,470.42487,453.25149Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M491.64625,410.48489a177.34737,177.34737,0,0,0-19.18274-8.21747c-6.9895-2.16052-15.355-3.61487-26.97132-3.61487-15.12084,0-24.73645,2.46271-32.97113,5.74256q-.00328,8.22015-.00427,16.44031,0,13.32129.00006,26.64251c2.20691-.81262,4.54071-1.57086,7.05609-2.2464.68329-.70123,1.972-.93274,4.42176-1.32684q4.81621-.7749,9.62036-1.19012c3.59967-.35865,7.53125-.55909,11.87713-.55909,17.93964,0,28.87177,3.39222,38.15784,7.4021.61054-1.06878.45886-1.80871-1.21869-2.2962-6.37555-1.85272-6.77484-3.54608-1.95343-8.21027q11.43156-11.05882,22.96283-22.01471a7.39453,7.39453,0,0,1,1.91242-1.36639,90.74841,90.74841,0,0,1-10.66956-3.9555A22.22373,22.22373,0,0,1,491.64625,410.48489Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M417.67707,293.412a18.87075,18.87075,0,0,0-37.72839-.96045c-.3172,11.24109,7.55853,19.34986,19.06469,19.62885C409.01221,312.32284,417.43043,303.90249,417.67707,293.412Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M240.43684,357.81717q-2.34394.56469-4.6955,1.2304c-6.57947,1.86231-12.72058,5.0011-18.86987,7.96967a85.487,85.487,0,0,1-13.12415,5.04156c8.98975-1.91784,15.54749-5.004,22.33032-8.20068A128.72432,128.72432,0,0,1,240.43684,357.81717Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,356.40109c-21.54492,0-32.02637,4.94043-43.124,10.17041-10.90625,5.14014-22.1836,10.45508-44.39161,10.45508-22.209,0-33.48339-5.31494-44.38671-10.45508-7.88782-3.71863-15.46937-7.28839-26.93274-9.04254-.11274.24121-.22522.4826-.35462.71564A13.249,13.249,0,0,1,446.40247,364.52a3.40047,3.40047,0,0,1-1.3244-.51715c-4.0766-3.46509-8.93823-2.76294-13.67084-2.5456a145.18227,145.18227,0,0,1-16.01208.15113c-2.3587-.1521-2.93317.70684-2.92359,2.962q.07333,17.23536.05091,34.47107c1.99322-.74255,4.08887-1.44141,6.32989-2.07428.13117-1.59051.714-1.75946,3.37146-2.21966,18.05109-3.12592,35.932-2.95844,53.45587,3.064,7.82514,2.68933,15.10322,6.67615,22.76435,9.76044,1.09625.44134,2.18554.90014,3.39251,1.39807-.06726.07782-.12261.14111-.17242.19794a74.577,74.577,0,0,0,13.60217,3.7113c-.04162-.14124-.08111-.2702-.12359-.41791a129.65539,129.65539,0,0,0,18.80407,1.301,90.35546,90.35546,0,0,0,40.79065-9.45612c9.96558-4.861,20.18641-9.03314,31.34485-10.45074a126.50578,126.50578,0,0,1,33.333.15429c11.518,1.58264,21.9101,6.38507,32.28717,11.23407.38269.17884.71021,1.169.89386,2.27613a77.88352,77.88352,0,0,0,25.73029,6.37744c.33178-5.86261.515-11.764.50488-17.70984.00348-6.57013-.22705-13.08307-.63831-19.54566-15.96423-1.30786-25.39477-5.75079-34.56134-10.07141C652.53712,361.341,642.05665,356.40109,620.51368,356.40109Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M576.78919,529.12356a20.14686,20.14686,0,0,0-6.69092,6.31964c-.37762.56385-.6322,1.16675-.137,1.7464a23.34732,23.34732,0,0,0,5.3313,4.682.88174.88174,0,0,0,1.10113-.14764,20.74806,20.74806,0,0,0,5.83368-8.65528C582.31428,530.27926,578.87312,527.92129,576.78919,529.12356Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M646.84675,452.6232c-1.21515-.33576-2.439-.64856-3.68469-.90412-10.39283-2.13232-20.8537-2.29211-31.38-1.56439-12.06036.83374-23.13,4.92072-33.812,10.24652a98.412,98.412,0,0,1-48.795,10.22516,112.23651,112.23651,0,0,1-20.11219-2.4007c-1.0849-.244-1.59979-.54034-1.272-1.33538-2.02924-.52515-3.94171-1.1037-5.7616-1.7229a119.47954,119.47954,0,0,1-7.97,11.39355c-9.49524,11.939-20.73309,21.86926-34.21795,29.00372-10.11261,5.35022-20.37091,10.5033-31.53,13.46228a36.56239,36.56239,0,0,1-8.19916,1.445c-2.50464.078-4.26166,1.35773-5.94074,3.03595-3.77929,3.7771-7.62872,7.4845-11.478,11.1908q-3.95938,3.81216-7.93152-.05585-6.4238-6.26733-12.77643-12.60693a6.78779,6.78779,0,0,0-3.68048-1.99469c-20.80359-4.064-38.77234-13.92633-54.96387-27.25025A122.73,122.73,0,0,1,292.256,453.8287a8.04176,8.04176,0,0,0-2.27118-2.92157q-2.17374-.438-4.55408-.77789c-.25946.038-.52563.08209-.8045.13708a4.65338,4.65338,0,0,1-4.06561-.69207c-2.13233-.18671-4.39295-.31452-6.80219-.37531.20618.906-.73071.74164-1.34113.72553-4.37793-.1156-8.75164-.16925-13.13488-.074q-1.16547.02537-2.32093.08759c-12.56323,1.5719-20.48614,5.30139-28.752,9.197-9.23547,4.35235-18.7392,8.82519-34.70685,10.20892-.9057.14124-1.81518.27136-2.733.3761-19.64069,2.24109-38.77521.92053-56.92139-7.754-.65436-.31281-1.328-.51855-1.51776-1.34991-.33179-1.45343-.67169-2.913-1.02692-4.43244a78.00412,78.00412,0,0,0-27.96411-6.77826,299.7383,299.7383,0,0,0,295.54444,247.1543c141.47577-.04816,259.20587-97.47815,291.28753-228.12329-11.74224-1.93024-19.66131-5.65827-27.39209-9.30237A113.2795,113.2795,0,0,0,646.84675,452.6232ZM216.93623,571.919c-2.82074,2.22028-3.90528,2.03662-6.04407-.76843-.77-1.00989-1.58374-1.99084-2.43213-2.936-1.79944-2.00458-1.74823-3.53821.34-5.26191,3.49952-2.88867,7.04395-5.72284,10.55591-8.59655.51044-.41767,1.48267-.74366,1.14814-1.52979-.28565-.67132-1.24915-.592-1.947-.54706-1.58715.10242-3.17193.26233-4.75213.44648-5.27234.61444-8.39667-3.10376-6.81183-8.15241.76086-2.42389,1.57434-4.83118,2.36243-7.247-.00074-.1748.00006-.34857.00085-.5224l-.30347.22363c-4.17114,2.65839-7.71533,6.1048-11.55114,9.18482-.62055.49829-1.23731,1.00568-1.8924,1.45569a2.72573,2.72573,0,0,1-3.36578.05444,16.46026,16.46026,0,0,1-5.19666-6.69391c-.63165-1.65417.81665-2.77234,1.98346-3.71777,5.3205-4.311,10.69275-8.55823,16.00452-12.87988q6.20452-5.04822,12.29706-10.23291c1.61615-1.38068,3.02289-1.57154,4.54944.04583.76336.80872,1.64349,1.5058,2.43847,2.28632,2.45246,2.40784,2.746,5.11523,1.46839,8.283-2.13141,5.28454-4.04767,10.65582-6.16877,16.29431,5.56031-.8,10.8241-1.50256,16.06849-2.32843a10.35793,10.35793,0,0,1,10.99029,5.40613c1.02026,1.92315.3468,3.28863-1.20416,4.5393q-10.689,8.61933-21.33472,17.2923C221.73023,567.97427,219.37489,569.9993,216.93623,571.919Zm72.11889,9.16742c-2.62823,10.57587-5.1626,21.17493-7.75586,31.75946-.50781,2.07257-1.31207,4.04456-1.40747,6.24738-.09118,2.10583-1.47876,3.01013-3.61926,2.77759-3.911-.42481-6.89349-4.68421-6.69025-9.82019.51453-1.7724-.39551-2.87964-2.03723-3.86536-3.259-1.9566-6.42389-4.07495-9.57269-6.20783a2.40866,2.40866,0,0,0-3.38037.2284c-3.42371,2.913-4.65637,2.92724-8.4126.39258-.856-.57764-1.66754-1.22107-2.51758-1.808-2.61859-1.80786-2.72394-2.5813-.15167-4.59936,10.4508-8.199,20.95984-16.324,31.43011-24.49842a3.91184,3.91184,0,0,1,5.21045-.18158c2.38666,1.68122,5.24457,2.61127,7.41205,4.67566A4.63191,4.63191,0,0,1,289.05512,581.08639Zm69.34406,28.72895c-2.75873,9.72839-5.53766,19.45092-8.26831,29.18719-.53626,1.91211-.89728,3.87372-1.32978,5.81458a2.28468,2.28468,0,0,1-2.68921,2.0617c-6.48553-.48132-8.094-1.4942-9.7807-7.0473-1.81854-5.98712-3.99835-11.86469-6.04162-17.78284a23.37065,23.37065,0,0,0-1.13672-2.25226c-1.38007,5.0849-2.68274,9.53174-3.7854,14.02759-1.80652,7.3656-2.48346,7.06977-8.85968,5.2735-4.04834-1.1405-4.66589-2.20117-3.4867-6.34491,3.31141-11.63684,6.93665-23.189,9.59833-35.00256a2.5467,2.5467,0,0,1,3.026-2.2757c5.63513.30878,7.73993,1.8891,9.51648,7.23566q3.29434,9.91379,6.60419,19.82251l.517-.02533c1.43768-5.3819,2.88659-10.76087,4.30932-16.14673,1.08246-4.09778,2.22059-4.75146,6.34736-3.57513.613.17474,1.2268.34655,1.84014.52C359.116,604.53134,359.63459,605.45865,358.39918,609.81534Zm66.33374,41.3056a31.21624,31.21624,0,0,0-3.31543.3045c-3.30426.52423-5.34619-.459-6.19922-3.69092-.6695-2.53692-2.11316-2.97674-4.3595-2.85253-3.49542.19329-7.0022.30114-10.50146.25262-1.79334-.02478-2.9812.57135-3.38044,2.28009-.84252,3.60675-7.48266,6.07221-10.763,5.31494-2.13043-.49182-2.33429-2.02453-1.73687-3.91229q3.6339-11.48382,7.18567-22.99359c1.39331-4.48065,2.83593-8.94776,4.12365-13.45886.82416-2.887,2.28492-4.7215,5.527-5.02057,1.6427-.15155,3.29694-.43323,4.68848-.59784,4.03882-.02161,6.27331,2.15875,7.75213,5.32031,2.355,5.035,4.13831,10.30029,6.11536,15.48669q3.77024,9.89008,7.47845,19.80378C428.44544,650.30307,427.943,650.959,424.73292,651.12094Zm61.93072-14.93512c-7.67676,5.64844-18.118,5.75622-25.14856.29059-2.74762-2.136-4.31036-5.11835-5.58221-8.20349a69.40878,69.40878,0,0,1-3.74182-12.5398c-1.08252-5.28534.51916-9.8949,4.1311-13.84473a23.66261,23.66261,0,0,1,24.96265-6.097,14.1232,14.1232,0,0,1,6.80536,5.42371c1.07153,1.55883.6936,2.768-1.03547,3.36761-4.1314,1.43311-8.16992,2.86017-12.70208.95325a7.46405,7.46405,0,0,0-10.24408,7.86706,28.5953,28.5953,0,0,0,5.0581,13.73664c1.8299,2.552,4.45478,3.16534,8.12763,2.03613,3.05664-.93982,5.57428-3.78162,5.65838-6.4289.0409-1.28613-.60827-1.94647-1.90832-1.79455a8.82338,8.82338,0,0,0-1.34155.47052,6.40346,6.40346,0,0,1-1.84473.44171c-3.85175-.09259-2.9812-3.74066-4.19263-5.78784-.84564-1.429-.64258-3.15466,1.118-3.83814,4.35645-1.69128,8.76868-3.24963,13.20789-4.71124a2.67,2.67,0,0,1,3.32092,1.69879,33.7795,33.7795,0,0,1,3.35694,13.06592C494.73774,628.50082,491.36121,632.72952,486.66364,636.18582Zm69.22626-38.1579q-9.716,6.94986-19.48462,13.82587c-2.55218,1.8006-3.51459,1.71454-5.33545-.82575q-10.78527-15.04641-21.44122-30.18512c-1.79071-2.54339-1.472-3.71783,1.08862-5.54327q10.209-7.27743,20.41614-14.55725c2.45355-1.75043,3.87207-1.5976,5.57507.887,1.01441,1.48,2.48627,2.75916,2.5838,4.97125.10474,1.08259-.6759,1.82044-1.63635,2.49006-3.8529,2.68634-7.7102,5.36724-11.51977,8.11407-.90979.656-2.306,1.15558-2.02369,2.64941a5.73405,5.73405,0,0,0,2.79834,3.70954c.88221.55121,1.7956-.14575,2.59229-.72235,3.67541-2.65961,7.40515-5.24591,11.03442-7.96649a2.61631,2.61631,0,0,1,3.97364.31378c.2749.28857.59191.54168.8396.851,4.21167,5.259,3.48754,6.08032-.75293,8.83618-2.93287,1.90607-5.74292,4.00373-8.57776,6.05731-2.4364,1.7649-2.56977,2.71912-.84088,5.09339,1.43859,1.97558,2.45636,2.12512,4.82543.452,3.77033-2.66284,7.44916-5.45562,11.23005-8.1029,2.88971-2.02319,3.739-1.82013,5.85876,1.0108C560.64436,594.12875,560.59193,594.66452,555.8899,598.02792Zm54.19134-57.88849c-2.52319,4.95264-6.37615,8.55329-13.14465,6.19287a43.08247,43.08247,0,0,0-7.00433-1.47143,4.60675,4.60675,0,0,0-5.13135,3.59094c-.28046,1.141.60931,1.39056,1.15033,1.834,2.45709,2.014,4.9649,3.96668,7.46906,5.92273a2.94245,2.94245,0,0,1,.67877,4.40339,35.24864,35.24864,0,0,1-3.30707,4.35467c-1.7594,1.904-3.135,1.98743-5.22522.37018-4.52466-3.50055-8.97589-7.09577-13.48523-10.61627Q565.03877,549.222,557.9372,543.799c-3.63037-2.75855-3.89929-4.2699-1.09234-7.82605,3.49566-4.42865,6.93707-8.90607,10.58752-13.20484,3.03918-3.579,6.7898-6.0296,11.16846-5.85131,8.1596.22143,13.74292,5.3045,14.7619,12.90515.55707,4.15545.70129,4.23864,4.977,4.93512,3.38171.551,6.749,1.20227,10.10516,1.89416C610.814,537.13962,611.18531,537.9722,610.08124,540.13943Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M620.51368,398.65255c-20.44885,0-30.837,4.502-41.35242,9.44184-.05877.02972-.1181.05737-.17682.08722-2.29156,1.16473-4.60614,2.228-6.93908,3.21075-9.48011,4.20923-20.47535,7.88617-39.04731,7.88617a99.68618,99.68618,0,0,1-23.72845-2.55432,6.72887,6.72887,0,0,1,.844,2.03717q4.00782,15.95288,7.797,31.96039c.87878,3.70355-1.83844,6.2522-5.5744,5.41785a12.16764,12.16764,0,0,1-1.82672-.5459c-1.85224-.73389-2.9823.02093-3.87189,1.64984-.32111.588-.64917,1.17145-.97632,1.75549,7.04968,2.2511,15.48694,3.78143,27.33679,3.78143,21.08887,0,31.37207-4.84668,42.25977-9.97753,11.10742-5.23438,22.5918-10.64747,45.25586-10.64747,4.33746,0,8.26263.19959,11.85681.55695a92.46681,92.46681,0,0,1,31.39307,8.26813c1.10974.51916,3.04547.76483,3.05047,1.93213.00055.12573-.00866.252-.01275.37805,7.28058,3.42523,14.45874,6.6546,24.96331,8.31848a299.5184,299.5184,0,0,0,6.25483-42.72559c-16.07624-1.32776-25.57868-5.80371-34.81433-10.15686C652.21485,403.54611,641.833,398.65255,620.51368,398.65255Z\"/\u003e\n \u003cpath class=\"cls-1\" d=\"M741.65211,284.95639c-12.10743-37.30194-13.65436-80.3277-36.25013-111.38007-22.82257-31.35138-63.41442-46.02673-94.77618-68.83905-31.05231-22.5957-57.42255-56.81415-94.72461-68.92157-35.98187-11.68457-77.26471.10315-117.145.10315s-81.163-11.78772-117.145-.10315c-37.30194,12.10742-63.67224,46.32587-94.72455,68.92157-31.36181,22.81232-71.95361,37.48767-94.77624,68.83905-22.59576,31.05237-24.1427,74.07813-36.25012,111.38007-11.66394,35.95105-36.0954,71.53076-36.0954,111.38006,0,39.84937,24.41083,75.38782,36.0954,111.38007,12.10748,37.31232,13.65442,80.33807,36.25012,111.38007,22.82263,31.36181,63.41449,46.02679,94.77624,68.84942,31.05231,22.59577,57.42261,56.80383,94.72455,68.92157,35.98194,11.68463,77.26477-.1134,117.145-.1134s81.163,11.798,117.15528.1134c37.29162-12.11774,63.662-46.32587,94.71429-68.92157,31.36176-22.82263,71.95361-37.48767,94.77618-68.84942,22.59577-31.05231,24.1427-74.07807,36.25013-111.38007,11.66406-35.951,36.09539-71.4895,36.09539-111.38007C777.7475,356.45627,753.31617,320.90744,741.65211,284.95639ZM399.10249,725.20266c-181.87952.0962-328.80518-146.74206-329.12958-329.121C70.6446,213.94919,216.27906,70.56717,392.5182,67.529c187.22821-3.22754,332.834,146.93811,334.99609,324.238C729.76447,576.28952,581.35535,725.10629,399.10249,725.20266Z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "CAProviderClass", diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json index 985f177006e..f0ef37d2809 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AWSChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json index d6b7e5b74be..dc4f06c1ef2 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/AzureChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json index 09ce1f80e3d..6cb5d83987c 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/BlockChaos.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "BlockChaos", diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json index b8f7944f3b5..cfd1b556fde 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/DNSChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json index ad92e80701a..2c4a1cd86c9 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/GCPChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json index 3180b906ad5..53509dbd9a6 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/HTTPChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json index 07907ee2f4e..59b6e47dd75 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/IOChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json index 02bc4058adf..b12b1471b40 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/JVMChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json index 0181597e6dd..99734c55f02 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/KernelChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json index 8753a342826..ddf4143aed0 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/NetworkChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json index b4e72cdedb8..82b5dadd404 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachine.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json index cc44adcb6e4..54fa954289c 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PhysicalMachineChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json index 240e7fa0b87..b284e023229 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json index e99e7ce9da0..ddf14a3c3f1 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodHttpChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json index 52c879fdd36..254401a282f 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodIOChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json index 3652772b1a8..b4a4cc2ed50 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/PodNetworkChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json index c104d4e48b2..41d1635def4 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/RemoteCluster.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "RemoteCluster", diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json index 6f2caf547fb..eff3b4178a8 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Schedule.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json index ad580dbf87c..932e4e13585 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StatusCheck.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json index d32a6537d2b..5dca8fbfd22 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/StressChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json index 959bd4daef3..5ce69978832 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/TimeChaos.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json index e623afa9e3c..0898e3efeea 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/Workflow.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json index 60d3ce59b02..a6328e85bf5 100644 --- a/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json +++ b/server/meshmodel/chaos-mesh/2.6.3/v1.0.0/components/WorkflowNode.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#4ccaf8", - "secondaryColor": "#ef5e80", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json index 002794b5e91..f1b9296dddf 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AWSChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AWSChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json index bf10cf704f7..4acf195b697 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/AzureChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AzureChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json index 9b74f5ece10..0f8a49a95ff 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/DNSChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DNSChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json index 1faf1452eed..16885a0411c 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/GCPChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "GCPChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json index bf57b7fab5f..07e8c9ae9d4 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/HTTPChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json index 4d628c04aba..cf686ced30f 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/IOChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IOChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json index 51dc8ae2236..3efb973a419 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/JVMChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "JVMChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json index c6493c039ae..f578184e50b 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/KernelChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KernelChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json index 12bb12694d3..e0ac1fc2dcc 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/NetworkChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "NetworkChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json index e4e304bae0a..391097a8583 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachine.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PhysicalMachine", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json index 68c5e394800..44b76c33433 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PhysicalMachineChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json index 6f5ca0dc480..a910c7c8021 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json index bee502228fc..d224e9c3fe5 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodHttpChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodHttpChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json index a2cf7f8be62..68ae70bca92 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodIOChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodIOChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json index fdd827039c5..0d5bfb1a1ae 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodNetworkChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json index 03fcfd5ec65..295d0a80c3f 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Schedule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Schedule", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json index ebf0ace3b05..5561445c334 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StatusCheck.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "StatusCheck", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json index 477ead4afb0..7d6976d0856 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/StressChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "StressChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json index 2db581c3332..61154598951 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/TimeChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TimeChaos", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json index f09fde27138..923818c154a 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/Workflow.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Workflow", diff --git a/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json b/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json index 548de14a1b6..dee3479fe8d 100644 --- a/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json +++ b/server/meshmodel/chaos/14.6.301/v1.0.0/components/WorkflowNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"#000E44\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"#6D4013\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10242)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"#6D4013\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10242\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10242)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"#6D4013\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#FFFFFC\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"#6D4013\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10242\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"60\" height=\"40\" viewBox=\"0 0 60 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.7518 0.292419L50.4322 7.60754L43.5508 1.86349L48.854 9.04349L44.1195 15.4913L50.4323 10.8989L59.3186 18.7899L52.2949 9.47025L59.7518 0.292419Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.6266 32.37C25.318 32.37 32.3636 25.3243 32.3636 16.633C32.3636 7.94169 25.318 0.895996 16.6266 0.895996C7.93534 0.895996 0.889648 7.94169 0.889648 16.633C0.889648 25.3243 7.93534 32.37 16.6266 32.37Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"2.5\"/\u003e\n\u003cmask id=\"mask0_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask0_27224_10300)\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.9877 28.2204C26.739 27.6944 28.4711 28.8719 29.8565 30.8506C31.242 32.8292 31.7561 34.8596 31.0048 35.3857C30.2536 35.9117 28.5214 34.7342 27.136 32.7555C25.7505 30.7769 25.2364 28.7465 25.9877 28.2204Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.08853 28.2205C7.33726 27.6944 5.60513 28.8719 4.21967 30.8506C2.83421 32.8292 2.32012 34.8596 3.07137 35.3857C3.82264 35.9117 5.55477 34.7342 6.94022 32.7555C8.32568 30.7769 8.83978 28.7465 8.08853 28.2205Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0298 31.3186C16.1127 31.3186 15.3692 33.2767 15.3692 35.6921C15.3692 38.1076 16.1127 40.0657 17.0298 40.0657C17.947 40.0657 18.6904 38.1076 18.6904 35.6921C18.6904 33.2767 17.9469 31.3186 17.0298 31.3186Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cmask id=\"mask1_27224_10300\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"25\" width=\"45\" height=\"23\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-4.80078 47.5563H39.0409V25.1863H-4.80078V47.5563Z\" fill=\"white\"/\u003e\n\u003c/mask\u003e\n\u003cg mask=\"url(#mask1_27224_10300)\"\u003e\n\u003cpath d=\"M29.6667 24.2904C26.9918 28.7344 22.1445 31.7039 16.6089 31.7039C11.2246 31.7039 6.49166 28.8947 3.77539 24.6518\" stroke=\"white\" stroke-width=\"2.64447\"/\u003e\n\u003c/g\u003e\n\u003cpath d=\"M28.983 18.905C29.9651 17.2039 29.9144 17.2969 30.7265 15.8903C31.0051 15.3919 31.2542 14.9522 31.5182 14.4978C30.6385 12.9733 29.7445 11.4342 28.8502 9.89509H25.4056C24.8193 8.89832 24.2182 7.90159 23.6173 6.87549H20.1873C19.601 5.89339 19.0293 4.89659 18.3842 3.82659C18.3696 3.82659 18.355 3.82659 18.3404 3.81193C18.0325 4.31031 17.7687 4.7354 17.4756 5.20443C17.1824 4.72071 16.9185 4.29562 16.6253 3.78253C16.3175 4.29557 16.0683 4.72066 15.7605 5.21903C15.482 4.74997 15.2181 4.32488 14.9103 3.82653H14.8956C14.192 4.80863 13.7229 5.86403 13.0633 6.84613H9.64792C9.06158 7.85753 8.46062 8.85433 7.85962 9.88043H4.41492C3.50611 11.4488 2.61192 12.988 1.73242 14.5124C1.98162 14.9668 2.23082 15.4066 2.50931 15.9049L4.28821 18.9663C6.46061 18.9663 6.93241 18.9224 9.44461 18.9224C10.8741 21.3984 11.2952 22.0074 12.8404 24.6839C17.3055 24.6839 18.293 24.7122 20.62 24.7122L23.665 18.9051L28.983 18.905Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22.7515 11.522C23.3232 12.5187 23.8949 13.5009 24.4666 14.5123C23.8801 15.509 23.3086 16.5058 22.7221 17.5172H19.2775C19.5852 18.0595 19.8638 18.5433 20.1423 19.0417C19.8346 19.5547 19.5266 20.0384 19.2335 20.5368H14.0738C13.7806 20.0531 13.4728 19.5693 13.1503 19.0417C13.4288 18.5579 13.6927 18.0742 14.0005 17.5319H10.5705C9.98415 16.5205 9.41247 15.5384 8.82617 14.527C9.39783 13.5302 9.96947 12.5335 10.5559 11.5367H15.8036C16.0674 11.9618 16.3313 12.4015 16.6538 12.9292C16.9616 12.4161 17.2107 11.991 17.4893 11.5367C19.2042 11.522 20.9192 11.522 22.7515 11.522Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M3.62305 14.498C4.20939 13.4866 4.78105 12.5045 5.35275 11.5224H7.12635C6.54003 12.5338 5.98305 13.5013 5.41135 14.498C5.96835 15.4654 6.54005 16.4475 7.12635 17.4883H5.36735C4.79567 16.5208 4.22405 15.5388 3.62305 14.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M27.9407 17.5029H26.167C26.7533 16.4915 27.3102 15.524 27.8819 14.5126C27.325 13.5452 26.7679 12.5631 26.167 11.537H27.9259C28.483 12.5045 29.0547 13.4865 29.6556 14.498C29.0987 15.4948 28.5122 16.4915 27.9407 17.5029Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M14.0161 23.498C13.7523 23.0289 13.4885 22.5745 13.2393 22.1494C13.2686 22.0614 13.2832 22.0321 13.2979 22.0175C13.3126 22.0028 13.3419 21.9735 13.3565 21.9735C15.4233 21.9588 17.4901 21.9442 19.557 21.9442C19.7036 21.9442 19.8356 21.9588 20.0408 21.9735C19.8942 22.5745 19.4985 22.9702 19.2639 23.4833C17.5488 23.4979 15.819 23.498 14.0161 23.498Z\" fill=\"#6D4013\"/\u003e\n\u003cpath d=\"M18.3981 13.032H21.8135C22.0919 13.5157 22.385 14.0141 22.693 14.5125C22.3998 15.0108 22.1213 15.4946 21.8281 15.9783H20.157C19.8493 15.4945 19.5413 14.9815 19.219 14.4538H17.5625C17.8559 13.9554 18.1196 13.5157 18.3981 13.032Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8944 16.037C14.3374 16.0223 13.7804 16.0076 13.2087 15.993C12.8862 15.4799 12.5784 14.9816 12.2706 14.4685H10.6289C10.9221 13.9408 11.1859 13.501 11.4351 13.0466H14.8798C15.1583 13.501 15.4368 13.9847 15.7446 14.4978C15.4515 15.0255 15.1583 15.5385 14.8651 16.0662L14.8944 16.037Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M18.3986 16.0809C18.6478 16.5207 18.9115 16.9604 19.1901 17.4588H17.5192C17.2846 17.0484 17.0206 16.594 16.7129 16.0809H18.3986Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M14.8804 16.066H16.5221C16.3169 16.623 16.0384 17.0627 15.7306 17.4732H14.1182C14.3967 16.9601 14.6605 16.5057 14.9097 16.0367L14.8804 16.066Z\" fill=\"white\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_27224_10300\"\u003e\n\u003crect width=\"60\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "WorkflowNode", diff --git a/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json b/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json index ac2bb50b01f..9c70cbf0cd2 100644 --- a/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json +++ b/server/meshmodel/chaosblade-operator/1.7.0/v1.0.0/components/ChaosBlade.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ChaosBlade", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json index 2aba9d8a605..768e18c3dde 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/Environment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Environment", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json index 19b7e4f25ab..73504d8963e 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/GitRepository.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "GitRepository", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json index 8d768c6de9d..9a16b74d9b8 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HNCConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HNCConfiguration", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json index 8a179c4f8c7..89c4aee966f 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/HierarchyConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HierarchyConfiguration", diff --git a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json index ade4c877821..22465cdc576 100644 --- a/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json +++ b/server/meshmodel/cloudbees-previews/1.2.0/v1.0.0/components/SubnamespaceAnchor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "SubnamespaceAnchor", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json index 1c85cb9036f..e3a2a942c46 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ClusterObjectSync.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterObjectSync", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json index 08f04159cbe..11e4eec6876 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Device.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Device", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json index fb9f354b308..1c0dbae2d34 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/DeviceModel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DeviceModel", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json index b5378219648..be7f8de9384 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/EdgeApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "EdgeApplication", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json index ec797a3805c..fa88f122742 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/NodeGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "NodeGroup", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json index e94c7c848c6..46e640c92d0 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/ObjectSync.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ObjectSync", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json index fdf093d1508..1bf206ba695 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/Rule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Rule", diff --git a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json index 69007f707e1..bb7d54e8f17 100644 --- a/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json +++ b/server/meshmodel/cloudcore/0.1.1/v1.0.0/components/RuleEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "RuleEndpoint", diff --git a/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json b/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json index 2ca8f93186f..f3f8851a793 100644 --- a/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json +++ b/server/meshmodel/cloudflare-tunnel-operator/0.2.0/v1.0.0/components/CloudflareTunnel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CloudflareTunnel", diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json index a11b5edced2..6eba0e9ab5b 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json index 756393de31b..8fa1c752a61 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json index 027c7f34e9f..9744a283f6a 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json index 93801956c72..e6581dcf6b7 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json index 769bc61ec3a..b9b75c4545f 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json index 1d92daebc8e..ee8b8a1f5da 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json index dad3fcea01b..2c4237bd4df 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json index b41478e7721..2e177a2a360 100644 --- a/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/cloudman/0.11.2/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json index 3e565a05a35..de436211001 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json index 4b724961ced..8949eb47de2 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json index 842c091bf3e..edf69c70a95 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/IngressClassParams.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IngressClassParams", diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json index c9fa51703a6..22f46ce2a16 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json index 1f09b2b34bf..1401b31c670 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json index fd5c2299361..e6f0d185642 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json index e1e5dc41646..917d56e8766 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json index 54ac5eeaca4..51e5357f01f 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json index 60072d10985..99ae5f5a792 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/TargetGroupBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json index 3d2ae05a75d..b913f59c392 100644 --- a/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/cluster-essentials/0.1.1/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"#2F6DE6\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"#E6522C\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"226\" height=\"226\" viewBox=\"0 0 226 226\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M105.906 10.9649C105.906 11.0317 105.919 11.0955 105.921 11.1618C105.915 11.7527 105.887 12.4646 105.906 12.9791C105.999 15.4875 107.971 15.3846 107.662 19.1956C107.363 20.6327 106.304 21.947 105.361 22.8605L105.194 25.8591C100.941 26.2115 96.6595 26.8568 92.3831 27.8279C73.9817 32.0064 58.1383 41.486 46.0762 54.2852C45.2935 53.7511 43.9242 52.7687 43.517 52.4678C42.2517 52.6387 40.9729 53.0292 39.3073 52.0589C36.1358 49.9239 37.287 48.3454 35.3842 46.7085C34.9521 46.3368 34.2927 45.834 33.8094 45.4515C32.3218 44.2654 30.5672 43.6468 28.8728 43.5887C26.6942 43.5141 24.5969 44.366 23.2245 46.0876C20.7846 49.1481 21.5657 53.826 24.9659 56.5372C25.0004 56.5647 25.0372 56.586 25.0719 56.6129C25.5391 56.9917 26.1113 57.4771 26.5408 57.7942C28.5599 59.2851 29.8725 57.7864 32.6595 60.4035C33.7479 61.5638 33.9381 63.6083 34.083 64.4925L36.3544 66.5218C24.1948 84.8229 18.5673 107.428 21.893 130.461L18.925 131.325C18.1427 132.335 17.0374 133.925 15.8812 134.399C12.2347 135.548 10.6837 133.994 8.21772 134.461C7.67496 134.564 6.91872 134.761 6.32486 134.9C6.30422 134.905 6.28493 134.911 6.26429 134.915C6.23192 134.923 6.18939 134.938 6.15829 134.946C1.98121 135.955 -0.702164 139.795 0.161703 143.578C1.02577 147.362 5.10586 149.663 9.30801 148.757C9.33834 148.75 9.38239 148.749 9.41401 148.742C9.46145 148.731 9.50321 148.708 9.5503 148.697C10.1361 148.568 10.8702 148.425 11.3826 148.288C13.8071 147.639 14.475 145.336 18.2587 144.788C19.8389 144.664 21.5039 145.763 22.3321 146.227L25.4212 145.697C32.53 167.739 47.4277 185.554 66.2919 196.733L65.0048 199.823C65.4687 201.022 65.9804 202.646 65.6348 203.83C64.2593 207.398 61.7397 208.513 60.5674 210.732C60.2868 211.263 59.9296 212.079 59.6588 212.641C57.8374 216.538 59.1734 221.027 62.6722 222.712C66.193 224.407 70.5632 222.619 72.4545 218.713C72.4574 218.708 72.467 218.704 72.4697 218.698C72.4716 218.694 72.4677 218.687 72.4697 218.683C72.739 218.13 73.1207 217.402 73.3479 216.881C74.352 214.581 73.1495 211.024 75.7308 207.944C76.4376 207.1 77.59 206.776 78.7848 206.456L80.3899 203.548C96.8354 209.861 115.244 211.556 133.632 207.38C137.827 206.427 141.877 205.195 145.792 203.715C146.243 204.515 147.082 206.054 147.306 206.441C148.52 206.836 149.846 207.04 150.925 208.637C152.857 211.937 152.208 214.459 153.213 216.76C153.441 217.284 153.821 218.022 154.091 218.577C155.978 222.495 160.362 224.289 163.888 222.59C167.387 220.905 168.724 216.416 166.902 212.519C166.631 211.958 166.259 211.142 165.978 210.611C164.806 208.392 161.902 207.57 160.526 204.003C159.951 202.163 160.623 201.019 161.071 199.823C160.803 199.515 160.229 197.778 159.89 196.961C179.495 185.384 193.955 166.904 200.746 145.56C201.663 145.705 203.256 145.987 203.774 146.091C204.84 145.388 205.82 144.47 207.742 144.622C211.525 145.169 212.193 147.487 214.618 148.136C215.13 148.274 215.864 148.402 216.45 148.53C216.497 148.542 216.539 148.565 216.586 148.576C216.618 148.583 216.662 148.584 216.692 148.591C220.895 149.495 224.975 147.196 225.839 143.411C226.701 139.628 224.019 135.787 219.842 134.779C219.234 134.641 218.373 134.406 217.783 134.294C215.317 133.827 213.766 135.381 210.119 134.232C208.632 133.656 207.575 131.886 207.06 131.158L204.198 130.325C205.682 119.589 205.282 108.415 202.714 97.2347C200.122 85.9504 195.542 75.6299 189.434 66.537C190.168 65.8695 191.554 64.6417 191.948 64.2805C192.062 63.0088 191.964 61.6754 193.28 60.2672C196.067 57.6499 197.395 59.149 199.414 57.6579C199.871 57.3207 200.494 56.7868 200.974 56.4009C204.373 53.6888 205.156 49.0112 202.715 45.9513C200.274 42.8914 195.545 42.6031 192.145 45.3152C191.662 45.6985 191.005 46.1985 190.571 46.5722C188.668 48.2092 189.804 49.8026 186.632 51.9378C185.258 52.7379 183.245 52.4611 182.332 52.4073L179.636 54.3306C164.266 38.2119 143.34 27.9065 120.806 25.9046C120.743 24.9602 120.661 23.2531 120.64 22.7394C119.717 21.8566 118.603 21.1029 118.323 19.1956C118.015 15.3846 120.001 15.4875 120.095 12.9791C120.116 12.4089 120.082 11.5815 120.079 10.9649C120.079 6.6159 116.906 3.08984 112.993 3.08984C109.079 3.08984 105.905 6.6159 105.906 10.9649ZM105.802 44.3905L114.324 78.9784L104.14 104.464C103.999 107.806 92.9805 87.5848 91.9463 86.8268L91.8857 86.8573L61.3555 65.1414C70.7386 55.8835 82.7405 49.0419 96.5721 45.8908C99.068 45.3222 101.563 44.8985 104.048 44.5933C104.079 44.5895 105.771 44.3942 105.802 44.3905ZM121.809 44.5333C121.817 44.5343 122.285 44.5839 122.292 44.5848C138.375 46.5588 153.247 53.8098 164.645 64.9201L134.42 86.2509L134.314 86.2058C131.631 88.1562 127.852 87.6723 125.76 85.0626C124.904 83.9934 124.454 82.7364 124.4 81.4673L124.37 81.4523C121.395 64.912 119.624 52.5469 119.056 44.3569C119.055 44.3427 119.973 44.4015 121.809 44.5333ZM50.4854 79.0117L78.2246 103.986L78.1944 104.138C80.6982 106.328 81.0674 110.13 78.9792 112.766C78.1238 113.846 76.9788 114.57 75.7495 114.908L75.7193 115.03L40.1624 125.359C38.3527 108.703 42.2529 92.5111 50.4854 79.0117ZM184.369 101.454C186.221 109.522 186.686 117.576 185.922 125.359L149.873 114.968L149.842 114.816C146.614 113.933 144.63 110.647 145.382 107.351C145.69 106 146.406 104.858 147.376 104.014L147.361 103.938L175.189 79.0117C179.347 85.7558 182.495 93.2882 184.369 101.454ZM107.304 105.938H118.711L125.801 114.755L123.256 125.758L113.015 130.656L102.744 125.743L100.199 114.74L107.304 105.938ZM145.055 136.066L145.116 135.99L181.859 142.21C176.482 157.337 166.192 170.441 152.443 179.211L138.18 144.716L138.225 144.655C136.915 141.607 138.226 138.032 141.241 136.579C142.013 136.207 142.819 136.001 143.623 135.96C144.105 135.935 144.586 135.979 145.055 136.066ZM81.7306 136.837C84.5258 136.876 87.033 138.818 87.6825 141.666C87.9866 142.999 87.8386 144.32 87.3368 145.487L87.442 145.622L80.7605 161.785L147.085 166.255C150.658 174.895 152.444 179.215 152.444 179.215C141.068 186.397 127.889 191.57 113.441 191.57C98.6591 191.57 84.9092 187.146 73.3703 179.655C73.3154 179.619 73.2618 179.583 73.2093 179.546L73.3739 179.652C60.2211 171.204 49.7448 158.555 44.1406 143.035L80.4531 136.867L80.5132 136.942C80.9194 136.867 81.3313 136.831 81.7306 136.837Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M149.655 99.8128L150.067 94.9205C150.094 94.5903 150.114 94.3233 150.123 94.1669L150.147 93.7391C150.18 93.0515 150.182 92.4827 150.137 91.9089C150.077 91.1254 149.947 90.4002 149.615 89.5487C149.26 88.639 148.735 87.7679 147.898 86.9569C146.598 85.6959 144.832 84.9356 142.914 84.9356C140.174 84.9356 138.854 85.8696 137.407 87.4242L137.249 87.5979L137.095 87.7753L136.968 87.9277L136.94 87.6113C136.205 79.7084 133.577 70.9993 129.564 61.88C127.353 56.8568 124.818 51.9928 122.396 47.9741L122.067 47.4313C121.139 45.9162 120.27 44.5995 119.526 43.5815C119.053 42.9352 118.618 42.3896 118.19 41.9248L117.981 41.6994C116.37 39.9776 115.374 39.2852 112.534 39.2852C110.536 39.2852 108.677 40.1228 107.36 41.5285C106.51 42.4359 106.023 43.3894 105.732 44.3669C105.477 45.2225 105.418 45.8977 105.43 46.6039C105.437 47.0436 105.474 47.4153 105.535 47.8258L105.568 48.0349C105.636 48.455 105.72 48.8812 105.88 49.6448L106.406 52.1487C106.673 53.4434 106.825 54.2436 107.045 55.4907C108.585 64.2197 108.984 72.4973 107.65 80.1721L107.586 80.5337C106.494 86.5434 104.362 91.7 101.063 95.9046L100.882 96.1321L100.767 95.8743C99.9716 94.0946 99.0655 92.2956 98.0626 90.4863C96.1812 87.0925 94.0438 83.8873 92.0952 81.4831C91.0688 80.2169 90.1039 79.1806 89.1781 78.3975C88.3983 77.738 87.6151 77.2112 86.6302 76.8067C85.6471 76.4029 84.5766 76.1704 83.3367 76.2366L83.1611 76.2481C81.6995 76.3612 80.2847 76.9098 79.1179 77.8629L79.0449 77.9237L78.9968 77.9629C77.7767 78.9768 76.9753 80.3082 76.5886 81.7413C76.3162 82.7508 76.2728 83.6662 76.3535 84.5794C76.425 85.3875 76.5794 86.0882 76.8293 86.9511L76.9662 87.4011C77.1879 88.0971 77.8855 90.2695 78.1507 91.1882L78.1713 91.2598C79.1105 94.5651 79.5824 97.7162 79.4699 101.204L79.4582 101.517C79.2718 105.905 78.1341 110.469 75.7958 115.302L75.6492 115.601L75.6923 115.518C68.1643 129.991 66.607 147.388 72.2702 160.605L72.4868 161.101L72.5324 161.196C81.3757 179.671 93.9423 189.133 110.985 189.78L111.552 189.798L112.15 189.805C114.335 189.814 116.416 189.71 118.474 189.469L118.926 189.413L118.844 189.422C126.2 188.628 133.53 186.431 139.724 182.866L140.012 182.699C147.378 178.386 152.854 172.289 155.646 164.5L155.695 164.362L155.639 164.503C158.605 157.098 160.184 150.73 160.229 144.406C160.284 136.709 157.972 129.56 153.013 123.02L152.793 122.732C151.04 120.471 149.917 116.706 149.51 111.736C149.216 108.14 149.296 104.426 149.655 99.8128Z\" fill=\"#F0F0F0\"/\u003e\n\u003cpath d=\"M112.535 46.3477C113.89 46.3477 133.701 78.0801 129.49 98.1653C127.339 108.427 126.811 116.831 129.907 125.546L130.023 125.869L132.825 130.862C132.207 129.095 131.843 127.02 131.734 124.636C131.195 112.898 141.666 91.9981 142.914 91.9981C144.171 91.9981 138.571 115.915 147.204 127.049C155.949 138.374 153.734 150.265 149.083 161.877C144.375 175.421 129.773 181.139 118.087 182.401C115.9 182.682 113.769 182.765 111.696 182.737C97.3741 182.345 86.8355 174.719 78.9031 158.147C73.8293 146.678 75.4834 131.225 81.9583 118.777C92.1475 98.1653 81.9583 84.3735 83.556 83.3624C84.802 81.9134 99.6776 102.131 97.2291 114.234L97.1496 114.599L98.1307 112.86L98.488 112.145C100.176 108.793 102.163 105.262 104.8 102.402C123.654 81.9536 111.696 46.3477 112.535 46.3477Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json index 0a26d62c9b8..288655890e9 100644 --- a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json +++ b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/Cluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Cluster", diff --git a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json index 3244942de34..f6d29413765 100644 --- a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json +++ b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ClusterFeature.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterFeature", diff --git a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json index 8b24a910e01..c5cfcc21885 100644 --- a/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json +++ b/server/meshmodel/cluster-registry/0.2.12/v1.0.0/components/ResourceSyncRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ResourceSyncRule", diff --git a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json index 9bb40ae5180..84244a5715d 100644 --- a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json +++ b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceExport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json index 5dbea92b838..966c8ec4dbd 100644 --- a/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json +++ b/server/meshmodel/clusternet-agent/0.13.0/v1.0.0/components/ServiceImport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json b/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json index 0b17f4446aa..8bb8ed8374d 100644 --- a/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json +++ b/server/meshmodel/clustersecret/0.4.1/v1.0.0/components/ClusterSecret.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterSecret", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json index 6c3bd595857..a3ac57c2dd7 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMBlock.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IPAMBlock", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json index 3acdfb1437c..0bf4c2b5c6d 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPAMHandle.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IPAMHandle", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json index 7b7deadec1a..687244d60f4 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/IPPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IPPool", diff --git a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json index 10b2801e710..fdcac0e63df 100644 --- a/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json +++ b/server/meshmodel/cni-hostnic/0.1.0/v1.0.0/components/VxNetPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "VxNetPool", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json index 0fce12dc48e..69d32f4b3a0 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/Kafka.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Kafka", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json index affb5957a64..6945bb2259f 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaBridge.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaBridge", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json index 8250aa44e1b..2a13d9af825 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnect.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaConnect", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json index 9b9d8e475f0..59b4032a863 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaConnector.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaConnector", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json index aa6a5f57f7c..19d89f21a7d 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaMirrorMaker", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json index c9cd07e4b74..274acf647c9 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaMirrorMaker2", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json index a827082a9db..2abe2e9d83d 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaRebalance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaRebalance", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json index fa56a554f3c..2084f3fefca 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaTopic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaTopic", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json index a2bc1b0c861..40e26f3628a 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/KafkaUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KafkaUser", diff --git a/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json index 674a411b332..9f8214a01ba 100644 --- a/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/cno/1.1.0/v1.0.0/components/StrimziPodSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "StrimziPodSet", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json index 775ead57149..54a01796284 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Alertmanager", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json index b6907e4aeec..b00b72c2088 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "AlertmanagerConfig", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json index 01147f49783..484453d0c0b 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodMonitor", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json index b9e732f23c3..4215297f47f 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Probe", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json index eeb9acf82f9..630605aab7d 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Prometheus", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json index f1827c49797..92f22402ebc 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PrometheusRule", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json index 77330933ed7..f7afc132bbc 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "ServiceMonitor", diff --git a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json index b68ca5046ca..8a47a3620e1 100644 --- a/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/cnpg-sandbox/0.6.1/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"url(#paint0_radial_27202_10235)\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"url(#paint1_radial_27202_10235)\"/\u003e\n\u003cdefs\u003e\n\u003cradialGradient id=\"paint0_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.52 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cradialGradient id=\"paint1_radial_27202_10235\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-169.521 -168.47) scale(584.258 583.023)\"\u003e\n\u003cstop stop-color=\"#732DD9\"/\u003e\n\u003cstop offset=\"0.1185\" stop-color=\"#6A2BCB\"/\u003e\n\u003cstop offset=\"0.3434\" stop-color=\"#5125A5\"/\u003e\n\u003cstop offset=\"0.6486\" stop-color=\"#291C69\"/\u003e\n\u003cstop offset=\"0.8139\" stop-color=\"#121646\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#121646\"/\u003e\n\u003c/radialGradient\u003e\n\u003cclipPath id=\"clip0_27202_10235\"\u003e\n\u003crect width=\"174\" height=\"182\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"174\" height=\"182\" viewBox=\"0 0 174 182\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M158.83 165.087C157.098 160.884 155.819 156.485 154.521 152.12C153.044 147.145 151.82 142.096 150.359 137.119C149.928 135.653 149.196 134.228 148.354 132.944C147.517 131.665 146.647 131.861 146.205 133.302C145.015 137.172 144.001 141.099 142.676 144.918C140.278 151.811 137.011 158.224 132.54 164.089C130.308 167.016 127.811 169.728 125.229 172.346C123.937 173.655 122.622 174.942 121.302 176.226C120.147 177.351 118.938 178.53 119.753 180.236C120.385 181.559 121.791 181.686 123.095 181.68C123.282 181.68 123.467 181.675 123.65 181.672C130.319 181.562 136.989 181.744 143.656 181.821C148.312 181.873 152.971 182.063 157.625 181.959C159.589 181.915 161.743 181.978 163.342 180.371C165.137 178.566 165.427 177.191 164.135 174.989C162.235 171.762 160.249 168.532 158.83 165.087Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M171.881 109.989C171.014 109.777 170.166 109.546 169.343 109.279C160.803 106.556 154.901 101.022 148.408 94.7902C147.417 93.8342 147.094 92.7455 147.163 91.3786C147.53 85.0124 146.762 78.7232 145.638 72.4783C144.056 63.7665 141.44 55.3443 137.878 47.2225C137.077 45.4008 136.008 43.7884 135.45 41.8567C135.395 41.6444 135.351 41.4019 135.494 41.2338C135.649 41.0464 135.961 41.0905 136.196 41.1787C138.267 42.0219 141.562 51.3675 144.224 48.9781C144.793 48.4681 145.003 47.6882 145.15 46.9443C147.409 35.81 144.558 18.6542 134.594 11.7671C130.017 8.60044 124.997 5.52205 119.506 4.29014C116.7 3.66729 113.648 3.70035 111.066 4.9681C109.784 5.59096 108.627 6.51142 107.236 6.84492C104.753 7.45673 102.281 6.06772 99.8312 5.32361C96.8594 4.43344 93.6171 4.47754 90.6784 5.46691C88.317 6.25511 85.9586 7.65517 83.5088 7.20042C80.1118 6.56656 77.6619 2.65585 74.1438 1.457C69.9238 0.0128798 65.2367 0.0128852 60.9148 0.980226C48.5113 3.75824 36.8648 12.4478 28.19 21.3909C18.6701 31.2021 14.8837 44.18 23.3016 56.025C26.3092 60.2583 30.7281 63.5569 35.7712 64.8577C36.7516 65.1142 37.7873 65.3125 38.5992 65.9133C41.8057 68.2918 35.0365 74.6581 33.5893 76.7249C30.4713 81.2034 27.5658 85.8471 25.4061 90.8686C21.3988 100.17 19.6506 109.524 18.2475 119.481C15.8199 136.703 12.5693 154.405 4.49653 169.959C3.19297 172.459 1.56903 174.948 0.544403 177.571C0.298604 178.194 0.221273 178.927 0.544403 179.506C0.734969 179.839 1.04429 180.095 1.37847 180.272C3.18193 181.272 5.92162 181.049 7.91566 181.06C13.9281 181.082 19.9405 181.104 25.964 181.115C29.0268 181.126 32.0869 181.137 35.1498 181.137C37.3536 181.137 40.596 181.694 42.5982 180.636C43.8908 179.958 44.6032 178.514 44.9596 177.091C45.4816 175.002 45.8157 172.859 46.3738 170.77C48.0886 164.381 50.5276 158.302 53.6566 152.459C58.6221 143.18 63.8115 132.693 54.5929 124.224C52.1653 122.003 49.3704 120.236 46.7658 118.235C46.2661 117.847 45.7742 117.059 46.2992 116.703C46.5008 116.559 46.7767 116.593 47.0337 116.648C57.0893 118.748 66.3855 129.527 65.7616 139.848C65.4274 145.236 63.2564 150.069 61.6078 155.069C59.937 160.148 57.979 165.169 57.5094 170.568C57.3186 172.701 57.0977 174.856 57.0759 177.001C57.0427 179.779 58.0892 181.212 61.2514 181.223C72.8205 181.245 84.3897 181.424 95.9592 181.534C98.8975 181.567 104.935 182.535 106.114 178.745C106.548 177.345 105.992 175.846 105.269 174.578C104.546 173.31 103.62 172.123 103.231 170.711C102.518 168.19 103.631 165.533 104.813 163.19C106.183 160.479 107.887 157.935 109.246 155.223C110.84 152.357 112.709 149.689 114.145 146.724C115.659 143.623 116.885 140.391 117.899 137.102C119.268 132.69 120.26 128.168 121.039 123.623C121.205 122.639 121.312 121.647 121.431 120.655C121.492 120.156 121.553 119.657 121.624 119.161C121.704 118.605 121.829 117.943 122.552 117.995C126.869 118.299 120.39 142.954 119.824 144.458C118.498 147.992 116.907 151.425 115.035 154.713C112.685 158.836 108.365 162.579 109.423 167.79C109.801 169.634 110.246 172.28 111.917 173.446C114.209 175.058 117.161 172.379 118.788 170.924C121.348 168.622 123.408 165.88 125.568 163.213C131.514 155.879 136.091 147.534 139.419 138.723C143.036 129.102 144.652 119.533 145.92 109.4C145.997 108.821 146.122 108.165 146.61 107.857C147.168 107.501 147.892 107.768 148.491 108.036C155.84 111.279 163.781 113.903 171.773 113.134C172.754 113.035 173.977 112.624 173.999 111.646C174.019 110.679 172.828 110.21 171.881 109.989ZM132.788 104.979C132.71 105.258 132.498 105.5 132.252 105.657C131.785 105.947 131.161 106.024 130.625 106.079C127.062 106.445 123.555 105.357 120.349 103.913C119.837 103.689 119.324 103.458 118.813 103.202C113.924 100.779 109.382 97.3231 105.628 93.3685C102.444 90.0113 99.9277 86.0345 98.2015 81.7464C97.8342 80.8344 97.4007 79.8587 97.1881 78.8914C97.0086 78.0701 97.1218 77.1027 97.7571 76.535C98.1575 76.1793 98.7042 76.0471 99.2262 75.9342C100.975 75.5894 102.833 75.3995 104.603 75.5564C105.327 75.6007 106.084 75.7907 106.598 76.2898C107.053 76.7224 107.277 77.3341 107.478 77.9349C108.346 80.534 109.072 83.2125 110.306 85.6793C111.555 88.1788 113.201 90.5243 114.916 92.7234C115.54 93.5225 116.186 94.2998 116.855 95.0689C120.161 98.8582 124.505 102.248 129.581 103.212C129.783 103.257 129.981 103.29 130.194 103.323C130.896 103.422 131.63 103.491 132.233 103.879C132.523 104.07 132.779 104.367 132.812 104.712C132.81 104.8 132.81 104.888 132.788 104.979Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "ThanosRuler", diff --git a/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json b/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json index b81dba84b27..c53ed483863 100644 --- a/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json +++ b/server/meshmodel/cockroachdb-operator/0.1.0/v1.0.0/components/CrdbCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json index 149698a6abc..d7cfba0fcc7 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CDStageDeploy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json index c9852f0566e..73a77832b51 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Codebase.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json index 109322c1e0d..71dad7f173b 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseBranch.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json index a05fd87f66e..dd0edf7f5b7 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/CodebaseImageStream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json index 12004da5ee1..634c6a5ced1 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/EDPComponent.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "EDPComponent", diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json index 3ec9b4f6bd6..d4da4c17786 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/GitServer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json index 426ef6f0756..2078fd3cf63 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraIssueMetadata.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json index 7513c4f5e50..4cab6f98b65 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/JiraServer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json index 9f69849a0c3..ab94af44308 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/QuickLink.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "QuickLink", diff --git a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json index 1aaf1092fc9..be768efeb6e 100644 --- a/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json +++ b/server/meshmodel/codebase-operator/2.22.1/v1.0.0/components/Template.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Template", diff --git a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json index bfa3e346a77..33e341c8d04 100644 --- a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json +++ b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubSubscriptionTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PubSubSubscriptionTemplate", diff --git a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json index e97023c4cc6..9f1f0d244fe 100644 --- a/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json +++ b/server/meshmodel/config-connector-templater/0.0.5/v1.0.0/components/PubSubTopicTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PubSubTopicTemplate", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json index 1b26cfb1cb8..64bdd3fb7b5 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Contour.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Contour", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json index aa0ca91be31..ae16f969329 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourConfiguration.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ContourConfiguration", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json index ab35ff6a8e3..f26f06dc139 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ContourDeployment.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ContourDeployment", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json index 92587322313..ce998d0cd0e 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/ExtensionService.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ExtensionService", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json index 342834a3396..01eb678127f 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/Gateway.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Gateway", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json index a4fadad6d07..13e59e752b5 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/GatewayClass.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "GatewayClass", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json index 4f46afc4015..92ac13eeb2c 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPProxy.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPProxy", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json index 20134a9948d..d197ca9bdad 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/HTTPRoute.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPRoute", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json index 84c9a135376..b610dbc7b9e 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TCPRoute.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TCPRoute", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json index cd3ad6c6a98..d045d432e35 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSCertificateDelegation.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TLSCertificateDelegation", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json index b63dd365247..d3f5fc1a982 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/TLSRoute.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TLSRoute", diff --git a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json index 7c02678f36a..bea10b61a51 100644 --- a/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json +++ b/server/meshmodel/contour-operator/3.0.0/v1.0.0/components/UDPRoute.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#009cdc", - "secondaryColor": "#45E1FF", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#009cdc;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\" width='360' height='360'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M233.49354,13.60742A172.54166,172.54166,0,0,0,189.601,5.43814c-18.10959,99.876-68.01935,169.76342-111.29634,213.538A430.60388,430.60388,0,0,1,27.997,262.48437a174.15983,174.15983,0,0,0,13.98066,21.40775c27.222-17.23246,52.17582-36.80658,71.6803-55.38577C160.28936,184.08758,214.07746,113.49855,233.49354,13.60742Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M291.88937,123.9467A372.54289,372.54289,0,0,0,315.29619,70.039,175.10772,175.10772,0,0,0,284.66577,40.3032c-23.84412,94.17987-79.44457,162.10613-127.97928,205.90359a497.63662,497.63662,0,0,1-89.62482,64.25429,174.77373,174.77373,0,0,0,14.7187,11.37237A517.17949,517.17949,0,0,0,188.27865,251.136C232.1921,213.40267,267.05212,170.60971,291.88937,123.9467Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M277.15082,34.89881A173.24206,173.24206,0,0,0,238.8559,15.42572C219.0561,116.321,164.68042,187.64625,117.52328,232.5651a464.13827,464.13827,0,0,1-71.81777,56.06806,175.035,175.035,0,0,0,14.62435,15.72825,485.22117,485.22117,0,0,0,90.61326-64.51895C199.06542,196.41682,254.26826,128.79887,277.15082,34.89881Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M336.13405,133.20021c2.51737-4.48613,4.89276-9.00617,7.203-13.54137A173.25517,173.25517,0,0,0,323.64154,81.2481,386.0473,386.0473,0,0,1,302.07666,129.369c-25.51378,47.93487-61.2713,91.84832-106.27711,130.52083A533.48966,533.48966,0,0,1,93.172,329.03161q7.06151,4.1016,14.52458,7.544a550.07205,550.07205,0,0,0,117.96-74.17927C272.4271,223.96358,309.5963,180.49554,336.13405,133.20021Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M186.93788,5.34036c-2.27707-.08912-4.55541-.17391-6.85395-.17391-95.7447,0-173.63959,77.89706-173.63959,173.6396a172.53394,172.53394,0,0,0,20.28834,81.33323,427.96473,427.96473,0,0,0,49.69651-43.01792C119.36973,173.68688,168.88439,104.37529,186.93788,5.34036Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M348.78657,140.29987c-27.42246,48.87333-65.74985,93.72453-113.9178,133.30646A571.32566,571.32566,0,0,1,126.119,343.81652a172.88007,172.88007,0,0,0,53.96489,8.62913c95.74435,0,173.6396-77.89688,173.6396-173.6396A173.37518,173.37518,0,0,0,349.191,139.542C349.05086,139.79329,348.92747,140.04875,348.78657,140.29987Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "UDPRoute", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json index 11907fa0ed2..8b5373d9a02 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AdvancedCronJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AdvancedCronJob", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json index ea86b94692b..1e2010eaf0d 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alert.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Alert", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json index 0e6e0424386..0c8cc5db435 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json index 8996806a905..142f4d87a33 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json index faa59336419..90b7af7a9a3 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AnalyticDeployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AnalyticDeployment", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json index 18ade30da0e..ef2485a9029 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/AuthService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AuthService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json index 17a66e475b6..c6f0307b10c 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/BroadcastJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "BroadcastJob", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json index d8a8c7fb882..aca3412aa38 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/CloneSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CloneSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json index 00f4d2f9dba..9212630b072 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ConsulResolver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ConsulResolver", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json index 47e9701e80f..bb429145a01 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ContainerRecreateRequest.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ContainerRecreateRequest", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json index c76e0d20e15..b19488c4467 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DaemonSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DaemonSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json index af4c95efb9d..97bedef7907 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/DevPortal.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DevPortal", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json index da1f282e414..873f9e76061 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/HelmRelease.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HelmRelease", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json index 15abcdd4ce9..0bd6fbca158 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Host.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Host", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json index 46086ab119b..48e0260aaab 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ImagePullJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ImagePullJob", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json index 41728da9488..dd72ff80acc 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesEndpointResolver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesEndpointResolver", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json index 6b03d8d7c44..ab1f3779f87 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/KubernetesServiceResolver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesServiceResolver", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json index 43d98a72820..a64871872a6 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Listener.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Listener", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json index e45800e8f2b..a24c9378112 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/LogService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "LogService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json index b673a9b7868..09023dd7eb1 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Mapping.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Mapping", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json index 16827fc6bf4..cb9a5554790 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/MetricGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MetricGroup", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json index 3dac467534b..06c44dd9d0f 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Module.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Module", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json index e62eeffc9fa..fe1da630b64 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/NodeImage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "NodeImage", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json index 3ac3fdbf2f1..4a6918f9b85 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json index 024ebb68a04..bf18606089c 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PodUnavailableBudget.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodUnavailableBudget", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json index d8b2a3d3cde..67dba17f38c 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json index 6e02abc23bf..f3063ee4d73 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json index 5f03bdc0fc9..ea78fc7f1fc 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusK8sCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PrometheusK8sCluster", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json index 30991433468..fe5539b4ccc 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json index a0a4d8a64a7..f21de716e83 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/RateLimitService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "RateLimitService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json index 37a7fd7b9fb..3313d56fa16 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ResourceDistribution.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ResourceDistribution", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json index 4cade3d87c7..adb620d4fbd 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json index f154e33094d..308e293b558 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/SidecarSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "SidecarSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json index 39ac2ccb4dd..ca578f04547 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/StatefulSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "StatefulSet", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json index b7fde7793da..a99d35b0932 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TCPMapping.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TCPMapping", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json index 5159c5b7a47..d9f85e7e8af 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TLSContext.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TLSContext", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json index 753c3b94838..2b445c4debc 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json index 36b14c0ce41..a8e630686e3 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/TracingService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TracingService", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json index b2e416f86e9..8b690c55f0b 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/UnitedDeployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "UnitedDeployment", diff --git a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json index c4d4d8240eb..9abd01bacb9 100644 --- a/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json +++ b/server/meshmodel/contrail-analytics/22.2.0-rev0bb9dbbd1/v1.0.0/components/WorkloadSpread.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 718.21 196.25\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#231f20;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M352.27,157.62h4.41L379.41,189V157.62h3.9v38h-3.7l-23.44-32.27v32.27h-3.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M393,157.62h25.14v3.85H397.06V174h20.57v3.79H397.06v14.11h21.29v3.7H393Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M438.51,161.47H424.25v-3.85h32.57v3.85H442.56v34.17h-4.05Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M461.75,157.62h4.15l10,31.45,10.2-31.45h3.49l10.16,31.45,10.06-31.45h3.9L501.5,195.89H498l-10.26-31.65-10.21,31.65H474Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M517.36,176.6c0-13.54,6.92-19.6,19.08-19.6s19.19,6.06,19.19,19.6-7,19.65-19.19,19.65S517.36,190.2,517.36,176.6Zm34.22.05c0-10.26-4.78-15.8-15.14-15.8s-15,5.54-15,15.8,4.72,15.86,15,15.86S551.58,187,551.58,176.65Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M579.23,180.14H567.84v15.5h-4v-38H580.3c8.83,0,12.83,3.54,12.83,11.08,0,6.57-3.13,10.42-9.75,11.29l9.18,15.65h-4.3Zm1.13-3.69c5.38,0,8.72-1.64,8.72-7.65s-3.24-7.43-8.88-7.43H567.84v15.08Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M613.29,175.47l-7.59,8.31v11.86h-4v-38h4v21l19.24-21h4.66L616,172.55l15.49,23.09h-4.56Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M634.84,191.79l2-3.08a24.56,24.56,0,0,0,13.59,3.85c7.85,0,11.34-2.21,11.34-7.44,0-5.39-4.51-6.16-11.34-7.39-8.2-1.44-13.75-2.82-13.75-10.51,0-7.34,4.72-10.22,13.75-10.22,6,0,10.21,1.34,13.24,3.39l-2.15,3.28a20.83,20.83,0,0,0-11.09-3c-6.82,0-9.74,1.9-9.74,6.41,0,4.83,4,5.75,10.72,7,8.31,1.49,14.31,2.72,14.31,10.87,0,7.55-4.82,11.19-15.18,11.19A27.49,27.49,0,0,1,634.84,191.79Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M705.52.51c-53.45,0-55.72,23.94-55.72,57.72v82.93h12.6V58.23c0-25.46-1-45.88,43.12-45.88a109.43,109.43,0,0,1,12.69.69V1C714.32.69,710.11.51,705.52.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M82.19,87.22V3.28H95.05V87.47c0,24.2-.25,44.61,44.12,44.61,44.11,0,43.1-20.41,43.1-45.87V3.28h12.6V86.21c0,33.78-2.27,57.72-55.7,57.72C85.47,143.93,82.19,120,82.19,87.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M328.88,57.22v83.94H316V57c0-24.2.25-44.62-44.11-44.62-44.12,0-43.11,20.42-43.11,45.88v82.93H216.2V58.23c0-33.78,2.27-57.72,55.71-57.72C325.6.51,328.88,24.45,328.88,57.22Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.27,3.53h12.34V141.16H352.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M387.71,3.53h64.44c32,0,46.44,15.88,46.44,44.11,0,28.42-14.31,45.7-46.62,45.7H400.05v47.82H387.71ZM452.33,81c22.27,0,33.33-10.84,33.33-32.76s-11.94-32.32-33.88-32.32H400.05V81Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M513,71.84C513,31.26,524.55,0,576.48,0c53.69,0,55.45,36,55.2,74.11H525.3c.25,33.53,8.57,58.48,52.18,58.48,23.19,0,33.78-6.3,45.12-14.62l7.06,9.33c-12.6,9.32-27.47,16.63-52.18,16.63C523,143.93,513,112.42,513,71.84Zm12.6-9.33h93.78c-1.26-27.47-3-50.91-43.11-50.91C537.65,11.6,527.07,32.52,525.55,62.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M4.79,171c53.44,0,55.71-23.95,55.71-57.73V3.28H47.9v110c0,25.46,1,45.88-43.11,45.88-1.66,0-3.25,0-4.79-.1V171C1.55,171,3.15,171,4.79,171Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690,141.76a8.7,8.7,0,1,1,8.69-8.7,8.71,8.71,0,0,1-8.69,8.7Zm0-16.28a7.58,7.58,0,1,0,7.57,7.58,7.59,7.59,0,0,0-7.57-7.58Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M690.56,134.22h-2.79v3.84h-1.33v-10h4.44c2.54,0,3.51,1,3.51,3a2.74,2.74,0,0,1-2.41,3l2.26,3.93h-1.45Zm.31-1.25c1.36,0,2.15-.4,2.15-1.86s-.76-1.77-2.19-1.77h-3.06V133Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.1 98.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1\"\u003e\u003cpath class=\"cls-1\" d=\"M176.13,78.81h2.21L189.7,94.48V78.81h2v19h-1.84L178.08,81.68V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M196.5,78.81h12.57v1.92H198.53V87h10.28v1.9H198.53v7h10.64v1.85H196.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M219.25,80.73h-7.13V78.81h16.29v1.92h-7.13V97.82h-2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M230.87,78.81H233l5,15.72,5.11-15.72h1.74l5.08,15.72,5-15.72h2L250.75,98H249l-5.13-15.83L238.77,98H237Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M258.68,88.3c0-6.77,3.46-9.8,9.54-9.8s9.59,3,9.59,9.8-3.48,9.82-9.59,9.82S258.68,95.1,258.68,88.3Zm17.11,0c0-5.13-2.39-7.9-7.57-7.9s-7.52,2.77-7.52,7.9,2.36,7.92,7.52,7.92S275.79,93.48,275.79,88.33Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M289.61,90.07h-5.69v7.75h-2v-19h8.21c4.41,0,6.41,1.77,6.41,5.54,0,3.28-1.56,5.21-4.87,5.64l4.59,7.83h-2.15Zm.57-1.85c2.69,0,4.36-.82,4.36-3.82s-1.62-3.72-4.44-3.72h-6.18v7.54Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M306.65,87.74l-3.8,4.15v5.93h-2v-19h2V89.3l9.62-10.49h2.33L308,86.28l7.75,11.54h-2.29Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M317.42,95.89l1-1.53a12.35,12.35,0,0,0,6.8,1.92c3.93,0,5.67-1.1,5.67-3.72s-2.26-3.08-5.67-3.69c-4.1-.72-6.87-1.42-6.87-5.26,0-3.67,2.36-5.11,6.87-5.11a11.5,11.5,0,0,1,6.62,1.7l-1.08,1.64a10.34,10.34,0,0,0-5.54-1.49c-3.41,0-4.87,1-4.87,3.21s2,2.87,5.36,3.48c4.15.75,7.16,1.36,7.16,5.44,0,3.77-2.42,5.59-7.6,5.59A13.74,13.74,0,0,1,317.42,95.89Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M352.76.25c-26.72,0-27.86,12-27.86,28.87V70.58h6.3V29.12c0-12.73-.5-22.94,21.56-22.94a54.64,54.64,0,0,1,6.34.34v-6C357.16.35,355.06.25,352.76.25Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M41.1,43.61v-42h6.43V43.73c0,12.1-.13,22.31,22,22.31S91.14,55.83,91.14,43.1V1.64h6.3V43.1C97.44,60,96.3,72,69.58,72S41.1,60,41.1,43.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M164.44,28.61v42H158V28.48c0-12.09.13-22.3-22.06-22.3S114.4,16.39,114.4,29.12V70.58h-6.3V29.12C108.1,12.23,109.24.25,136,.25S164.44,12.23,164.44,28.61Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M176.13,1.77h6.17V70.58h-6.17Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M193.86,1.77h32.21c16,0,23.22,7.94,23.22,22.05S242.14,46.67,226,46.67H200V70.58h-6.17Zm32.31,38.71c11.13,0,16.66-5.42,16.66-16.38s-6-16.16-16.94-16.16H200V40.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M256.47,35.92c0-20.29,5.8-35.92,31.77-35.92,26.84,0,27.72,18,27.6,37.05H262.65c.13,16.77,4.28,29.25,26.09,29.25,11.59,0,16.89-3.16,22.56-7.31l3.53,4.66c-6.3,4.66-13.74,8.32-26.09,8.32C261.52,72,256.47,56.21,256.47,35.92Zm6.31-4.66h46.88C309,17.52,308.15,5.8,288.11,5.8,268.83,5.8,263.53,16.26,262.78,31.26Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M2.4,85.51c26.72,0,27.85-12,27.85-28.86v-55H24v55c0,12.73.5,22.94-21.55,22.94-.84,0-1.63,0-2.4,0v5.94C.78,85.5,1.57,85.51,2.4,85.51Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345,70.88a4.35,4.35,0,1,1,4.35-4.35A4.35,4.35,0,0,1,345,70.88Zm0-8.14a3.79,3.79,0,1,0,3.78,3.79A3.79,3.79,0,0,0,345,62.74Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M345.28,67.11h-1.4V69h-.66V64h2.22c1.27,0,1.76.52,1.76,1.51A1.37,1.37,0,0,1,346,67.06l1.13,2h-.72Zm.15-.63c.69,0,1.08-.19,1.08-.92s-.38-.89-1.1-.89h-1.53v1.81Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "WorkloadSpread", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json index e4162f65102..b965388016d 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterInstance", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json index 9b61aee6565..ad013de36ff 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/ClusterTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterTemplate", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json index e4afe225971..5f93593aa11 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Instance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Instance", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json index 95c86b1096a..1e034766e41 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Template.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Template", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json index 025c16af86b..fea8cf7e9e2 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/User.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "User", diff --git a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json index 89051dc39bd..87768c5e5ea 100644 --- a/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json +++ b/server/meshmodel/cosmo-controller-manager/0.9.0/v1.0.0/components/Workspace.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Workspace", diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json index 6eb0fb67e63..0b3fd529603 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json index 4c069067a3f..e545b418f0c 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json index 76281f9b1b0..15546e9efc2 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json index f9288d76626..c1eabee870a 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json index 5d202d241f2..e31c2a63ddc 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json index a5f12fd26ee..a71239b358f 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json index 561d565a0bd..5340e06d321 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json index f70b4518cc9..ffb6027883a 100644 --- a/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/couchbase-monitor-stack/2.1.2/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json index 99a7e3f0451..4b85c564079 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json index 6cf32b0be91..1df68ff56c2 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json index 7a545675199..da3d3e766d3 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBackupRestore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json index f319f272827..3df75712f43 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json index 46c94913bab..2fab3f31c88 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json index c13e3b5c002..3486b692ebe 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json index 249eb124a0f..17ee1ceb187 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseCollectionGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json index 91f8a1b7e46..99e76a47b6c 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseEphemeralBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json index d01fa6adab8..e49e735832a 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json index b478f834fcd..95ad9c6dec8 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMemcachedBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json index f562ef2b954..52131a19d89 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseMigrationReplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json index 1b9d899a81b..593b3397e05 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseReplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json index 773fd69f104..ad8b5cf1b9d 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseRoleBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json index 616c4955d27..5dd3711e4d6 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScope.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json index 58fb5ef9fe6..6522c076703 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseScopeGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json index 5328fbfe87d..aa5b69cfa93 100644 --- a/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json +++ b/server/meshmodel/couchbase-operator/2.64.0/v1.0.0/components/CouchbaseUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"#ED2226\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"575\" height=\"575\" viewBox=\"0 0 575 575\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M287.5 0C128.984 0 0 128.55 0 287.5C0 446.016 128.55 575 287.5 575C446.016 575 575 446.45 575 287.5C575 128.55 446.016 0 287.5 0ZM481.628 337.878C481.628 355.249 471.639 370.449 452.096 373.924C418.221 379.999 346.998 383.478 287.5 383.478C228.002 383.478 156.779 379.999 122.904 373.924C103.361 370.449 93.3724 355.249 93.3724 337.878V225.831C93.3724 208.459 106.835 192.39 122.904 189.785C132.893 188.048 156.344 186.31 174.585 186.31C181.533 186.31 187.179 191.522 187.179 199.773V278.38L287.934 276.208L388.69 278.38V199.773C388.69 191.522 394.335 186.31 401.284 186.31C419.524 186.31 442.976 188.048 452.965 189.785C469.468 192.39 482.496 208.459 482.496 225.831C481.628 262.745 481.628 300.529 481.628 337.878Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json index ad0841c7d6f..dcd8f42941f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AddressscopeV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json index 256b55fa7aa..bd6ebe526b9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/AggregateV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json index 490c9033d3b..8680ac9cc9e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ApplicationCredentialV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json index a4711249790..6170f967b59 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClusterV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json index 48e4aeb4375..fe6ee2aca14 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ClustertemplateV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json index 58a6b84673f..16ecf8da2ea 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ConfigurationV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json index ea916581287..0be1178a06d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ContainerV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json index 2aa54dd2098..673fbddc790 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/DatabaseV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json index a2904c6eca3..42eb165b63a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EC2CredentialV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json index 68915a183e0..36e1ebb0ac9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointGroupV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json index b760915e573..db4298d1d34 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/EndpointV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json index 446caaecb88..bad6778ae3f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorAccessV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json index f206eaa8e55..63b86529cfd 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FlavorV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json index 9f8cd3698ce..f4b072de5f7 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipAssociateV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json index 0c8935d7e80..aeda8250cea 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/FloatingipV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json index 1d0c041fcfa..3cae7afde39 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json index d4a76ebf569..56e47778d24 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/GroupV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json index 7f08f35bf6b..29747724b19 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IkePolicyV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json index 826e2d78683..a6eb84d7ba3 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessAcceptV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json index 1a23f8bba53..0ac12ed649a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageAccessV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json index 74aaced0080..ca0d96eac2a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ImageV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json index f0c24f418f7..680270e3ae7 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InheritRoleAssignmentV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json index 6e3bf240665..435220f10c1 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json index 546135ffb56..e9508f8422a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InstanceV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json index c54bf58308c..cb0f53deb7e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/InterfaceAttachV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json index 441c0c2bde7..83721f16bf1 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/IpsecPolicyV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json index 070ab2db88a..a60f6f0d5f6 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/KeypairV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json index ec31538eaf0..0f00858123b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7PolicyV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json index d9b38724268..0a7d8a61fb5 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/L7RuleV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json index a1e5e189c61..ba40d5cc2d8 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ListenerV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json index 576f330d2e1..425e9a3eb20 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/LoadbalancerV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json index 2ddcf2f5da6..b25e4dbbf7a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MemberV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json index 675eb99b2ff..f4c156da79b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MembersV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json index eff64a9ac41..afb14c779d9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/MonitorV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json index 919ddd840ed..cc9076403c1 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NetworkV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json index 36402ac4d9f..ae098522cf1 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/NodegroupV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json index 67169eb5cbf..6533a5ad9a4 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ObjectV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json index 55e22c42042..8a8ad3ddfca 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/OrderV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json index 8eef9d0289b..d782aeff1c3 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PolicyV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json index b62d171066c..43ea2024225 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PoolV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json index 89d19dc7f80..1d65b252d05 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortSecgroupAssociateV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json index 09e3f64eab3..a6f9ef02bea 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json index 8e1bc04adf8..8fa00782783 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/PortforwardingV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json index ae50a74e0c9..ccde49b4353 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProjectV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json index dbd13073b08..bd20856e00a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfig.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json index 9049b396c6c..1305ef3e785 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ProviderConfigUsage.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json index 84a2eb2e859..606c481eb01 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosAssociationV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json index d29a5ca1074..f3b453b17db 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosBandwidthLimitRuleV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json index 92e1726255d..f43eb993190 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosDscpMarkingRuleV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json index 2c247423883..8a394579eca 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosMinimumBandwidthRuleV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json index 2e8bc40f401..473596f6899 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosPolicyV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json index b9a1983969d..4fa0009bd0b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QosV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json index 2305e95953d..bb931b7552c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotaV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json index 13f567f7793..3d207b704e5 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json index d8ca8977478..99ceb58e53e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/QuotasetV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json index 58d6f6a4c20..dc4b3941a62 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RbacPolicyV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json index 0eedf8d1c49..ed5b4569b6a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RecordsetV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json index 0bb4454955c..f2091a3c25e 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleAssignmentV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json index 5900aebebb8..9ab6b0c0d1c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RoleV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json index c7943ea0306..1f21ce8f5a8 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterInterfaceV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json index 6ef85051eb9..2458ca89153 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterRouteV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json index a273b805e2d..a372437a199 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RouterV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json index 5c4e72cfe43..acbc3e59631 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/RuleV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json index 37c3a381ec8..429e5b8977b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupRuleV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json index 2ae9ac32546..39911461f6c 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecgroupV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json index 83017d10d88..5932c2fc9c4 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecretV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json index 12a6fb2516e..8574869c952 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SecurityserviceV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json index 8f456584001..2db1d4ebacc 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServergroupV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json index 00fe6f0dc79..44e638f3714 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json index faaf755ec16..8aecc541822 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ServiceV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json index 631125fab8a..dba276a2e4a 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareAccessV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json index 9829d015ebf..b22a031ba36 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ShareV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json index f6bf0d0a251..3bd3dd81bd8 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SharenetworkV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json index cc2383d144d..9a5f762f7ba 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SiteConnectionV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json index 1183dfd482b..cc69ad060bd 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StackV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json index c666b0d525c..c47f583fd32 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/StoreConfig.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json index 17fd71f0640..6ec8446794b 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetRouteV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json index 280c5fd3f53..3fba6819371 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json index 4e2e2d82067..1de900af7a3 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/SubnetpoolV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json index c79e9b78156..0744666c333 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TempurlV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json index 2dbeb6456c7..eda680c4575 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferAcceptV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json index 027bbd87194..92e7bdf29e9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TransferRequestV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json index d05af9d1424..fd496e982af 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/TrunkV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json index 1cc69082f57..435edbfde56 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserMembershipV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json index d46f9d2cb31..8ff70f5aac7 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV1.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json index 385a1f90019..a058bb80f43 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/UserV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json index 2e1d6cd993e..6d80cc55b1f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json index c55731bbc9b..65fd01e50c4 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeAttachV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json index 039a92ca13e..09c602c30b9 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeAccessV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json index ad42b4bf22d..e0324a6e38f 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeTypeV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json index caa65ff84a3..394c4f94c22 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/VolumeV3.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json index e841d635d94..fd37e67f09d 100644 --- a/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json +++ b/server/meshmodel/crossplane-provider-openstack/v0.3.0/v1.0.0/components/ZoneV2.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#DA1A32", "secondaryColor": "", - "shape": "round-rectang", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json index a26b3ac47dd..73438265a4a 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/CompositeResourceDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CompositeResourceDefinition", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json index 9924f299e5d..688ff73f997 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Composition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Composition", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json index 6585aebb1b0..12da62a62e2 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Configuration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Configuration", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json index 913a862fc6e..c60e228b64a 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ConfigurationRevision.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ConfigurationRevision", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json index fd55355dbd8..a4aad9c5017 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesApplication", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json index bc5181d1f27..7d860f3f85f 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesApplicationResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesApplicationResource", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json index a530293a7b7..4101b1ee20e 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/KubernetesTarget.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KubernetesTarget", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json index d20a44ef80c..d155f005df1 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/Provider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Provider", diff --git a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json index f2507f02ba0..16e3fd21769 100644 --- a/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json +++ b/server/meshmodel/crossplane-types/0.13.0-rc.98.g1eb0776/v1.0.0/components/ProviderRevision.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#ffcd3c", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#f7d186;}.cls-4{clip-path:url(#clip-path-2);}.cls-5{isolation:isolate;}.cls-6{clip-path:url(#clip-path-3);}.cls-7{clip-path:url(#clip-path-4);}.cls-8{clip-path:url(#clip-path-5);}.cls-9{fill:#ffcd3c;}.cls-10{clip-path:url(#clip-path-7);}.cls-11{clip-path:url(#clip-path-8);}.cls-12{fill:#f3807b;}.cls-13{clip-path:url(#clip-path-11);}.cls-14{clip-path:url(#clip-path-12);}.cls-15{fill:#35d0ba;}.cls-16{clip-path:url(#clip-path-14);}.cls-17{fill:#d8ae64;}\u003c/style\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath class=\"cls-1\" d=\"M447.73,309.78a46.75981,46.75981,0,0,0-46.76,46.76V796.58a46.76,46.76,0,0,0,93.52,0V356.55a46.75555,46.75555,0,0,0-46.76-46.77\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath class=\"cls-1\" d=\"M263.62,234.54q-.195,4.305-.2,8.68c0,3.19.07,6.35.24,9.5-.07,1.55-.24,3.08-.24,4.66V563.56c0,58.55,47.91,106.46,106.46,106.46H530.1c58.56,0,106.46-47.91,106.46-106.46V257.37c0-1.78-.18-3.51-.28-5.26.14-2.95.22-5.92.22-8.89,0-2.92-.07-5.8-.2-8.68C631.8,135.53,550.1,56.66,449.98,56.66,349.85,56.66,268.14,135.53,263.62,234.54Z\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003crect class=\"cls-1\" x=\"142.32001\" y=\"97.05\" width=\"606.10999\" height=\"606.10997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003crect class=\"cls-1\" x=\"121.45167\" y=\"305.6912\" width=\"654.37372\" height=\"195.51814\" transform=\"translate(-153.87924 435.4032) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003crect class=\"cls-1\" x=\"260.91\" y=\"50.92997\" width=\"382.11002\" height=\"619.28997\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003crect class=\"cls-1\" x=\"-22.38\" y=\"-67.66\" width=\"639.04998\" height=\"639.05002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003crect class=\"cls-1\" x=\"-32.95044\" y=\"128.3843\" width=\"654.3837\" height=\"241.17767\" transform=\"translate(-89.86928 280.98264) rotate(-45)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-11\"\u003e\u003crect class=\"cls-1\" x=\"280.67001\" y=\"235.39999\" width=\"606.11002\" height=\"606.11002\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-12\"\u003e\u003crect class=\"cls-1\" x=\"258.77901\" y=\"443.79101\" width=\"654.39197\" height=\"193.81798\" transform=\"translate(-210.70418 572.72293) rotate(-45.00062)\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-14\"\u003e\u003cpolygon class=\"cls-1\" points=\"412.96 670.01 494.5 752.9 494.5 670.01 412.96 670.01\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003cg class=\"cls-2\"\u003e\u003crect class=\"cls-3\" x=\"368.03\" y=\"276.84\" width=\"159.41\" height=\"599.44003\"/\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-6\"\u003e\u003cg class=\"cls-7\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-9\" x=\"115.65\" y=\"70.36997\" width=\"665.66\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-10\"\u003e\u003cg class=\"cls-11\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-12\" x=\"-55.32999\" y=\"-100.60001\" width=\"699.14\" height=\"699.14004\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-4\"\u003e\u003cg class=\"cls-5\"\u003e\u003cg class=\"cls-13\"\u003e\u003cg class=\"cls-14\"\u003e\u003cg class=\"cls-8\"\u003e\u003crect class=\"cls-15\" x=\"253.14\" y=\"207.87\" width=\"665.65999\" height=\"665.65997\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003cg class=\"cls-16\"\u003e\u003crect class=\"cls-17\" x=\"380.69\" y=\"636.90997\" width=\"147.02997\" height=\"147.66998\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 900 900\" width='900' height='900'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M471.22288,669.71789V790.45608c0,16.82419-10.9559,30.52608-24.40691,30.52608-13.46492,0-24.40692-13.68794-24.40692-30.52608V669.71789h48.81383M493.58075,647.36H400.03724V790.45608c0,29.21583,20.93612,52.88395,46.76478,52.88395,25.84261,0,46.76477-23.66812,46.76477-52.88395V647.36Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M588.56,154.07853a163.28343,163.28343,0,0,1,25.82871,81.41674c.11153,2.53688.18121,5.12948.18121,7.70818,0,2.53688-.06968,5.17131-.19517,7.8615l-.05572,1.10116.05572,1.10116c.04186.64119.08363,1.26844.12549,1.90961.05573.8642.12549,1.68661.12549,2.17446v87.68922L323.736,635.93012a85.29961,85.29961,0,0,1-40.19959-72.39831V459.102L588.56,154.07853m2.2999-32.04539L262.50273,450.40425V563.5458c0,43.9631,27.01347,81.91853,65.24768,98.10154L635.64534,353.75239V257.36533c0-1.78417-.18122-3.51259-.2788-5.26888.13936-2.955.223-5.91007.223-8.893q0-4.36982-.19517-8.67a185.61592,185.61592,0,0,0-44.53447-112.50037Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M449.04619,56.66c-100.12264,0-181.83209,78.86594-186.3483,177.87349q-.18816,4.3071-.19516,8.67c0,3.192.06967,6.3561.237,9.50629-.06968,1.56115-.237,3.0805-.237,4.65557V450.32058L590.832,121.99132A186.13267,186.13267,0,0,0,449.04619,56.66Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M368.95361,669.99664H529.1805c58.55706,0,106.46484-47.90777,106.46484-106.45088V353.04148L327.26255,661.42427A105.43227,105.43227,0,0,0,368.95361,669.99664Z\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ProviderRevision", diff --git a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json index 946e776891d..71058ad5aee 100644 --- a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json +++ b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClass.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "SecretProviderClass", diff --git a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json index 1a5e21e54b8..b10e49b8115 100644 --- a/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json +++ b/server/meshmodel/csi-secrets-store-provider-azure/1.5.4/v1.0.0/components/SecretProviderClassPodStatus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "SecretProviderClassPodStatus", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json index 08b379a1794..30ecb679d56 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Component.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Component", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json index 483bb92e774..cb36194862f 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Configuration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Configuration", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json index 47b96d646f5..8db63b6f036 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/HTTPEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPEndpoint", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json index fd8b259b2f9..98a0006b943 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Resiliency.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Resiliency", diff --git a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json index bea317bf2da..c8d8b7f942b 100644 --- a/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json +++ b/server/meshmodel/dapr/1.13.4/v1.0.0/components/Subscription.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0d2192", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#0d2192;}.cls-2{fill:#fff;isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 480 255.60879\" width='480' height='255.60879'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-2{isolation:isolate;opacity:0.08;}\u003c/style\u003e\u003c/defs\u003e\u003crect id=\"Rectangle-4\" class=\"cls-1\" x=\"99.78042\" y=\"11.18938\" width=\"282.15168\" height=\"198.57274\" rx=\"5.49347\"/\u003e\u003crect id=\"Rectangle-4-2\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"99.78042\" y=\"11.18938\" width=\"104.36936\" height=\"198.57274\"/\u003e\u003crect id=\"Rectangle-3\" class=\"cls-1\" x=\"10.67987\" y=\"196.95093\" width=\"456.64027\" height=\"47.65952\" rx=\"10.21827\"/\u003e\u003crect id=\"Rectangle-4-3\" data-name=\"Rectangle-4\" class=\"cls-2\" x=\"10.67987\" y=\"196.95093\" width=\"141.28521\" height=\"58.65786\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Subscription", diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json index 27183214b97..a94f98d3d06 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/DaskCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json index d5991f1b5fe..6b33b43841b 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json index 0c3341f0f2d..5a24445f817 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json index 17d07b1c250..4413421ce26 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/IngressRouteUDP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json index 7941e6f9595..e45dbab82cc 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/Middleware.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json index a9dd4bd5ca0..131966f88ef 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/MiddlewareTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json index c0644d24c0d..28f3d4dc0ac 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/ServersTransport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json index 4baf3639fff..5ad4d795314 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json index cce336801c5..61060097c0c 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TLSStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json index 9cd66adb29d..a3a060b3677 100644 --- a/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/dask-gateway/2024.1.0/v1.0.0/components/TraefikService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json index c3ebd898e4b..30a19fda2f2 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json index c8701e0d50a..80460753d36 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json index 035ff2c0fca..c6b0fd53514 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json index d4e11b6e840..3d4a77d5749 100644 --- a/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json +++ b/server/meshmodel/dask-kubernetes-operator/2024.5.0/v1.0.0/components/DaskWorkerGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json index 8c06e2301e2..723b0d775bd 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/DaskCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DaskCluster", diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json index 904e11970a5..6e3e08071bb 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json index 37c0d3d5545..24b13c62a9b 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json index 44e0698e0a5..a95d48157e7 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/IngressRouteUDP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json index 717ac8ef637..c838ce6b4bc 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/Middleware.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json index eb8b657be19..9fafe3bb4fd 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/MiddlewareTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json index a361e0d45fd..1e3c5ce249f 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/ServersTransport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json index 06c163a84ac..4e2318175cb 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json index 4cf2ac5ab6d..226957815f6 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TLSStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json index 575e6ff111b..7b3aa06b1fa 100644 --- a/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/daskhub/2024.1.1/v1.0.0/components/TraefikService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st0\" d=\"M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81\n\t\tc6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61\n\t\tz\"/\u003e\n\t\u003cpath class=\"st4\" d=\"M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1\n\t\tc-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11\n\t\tc6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z\"/\u003e\n\t\u003cpath class=\"st2\" d=\"M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81\n\t\tc-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41\n\t\tc0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64\n\t\tC221.95,230.46,229.19,217.92,240.95,211.14z\"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFC11E;}\n\t.st1{fill:#04255C;}\n\t.st2{fill:#FC6E6B;}\n\t.st3{fill:#FFFFFF;}\n\t.st4{fill:#EF1161;}\n\u003c/style\u003e\n\u003cg\u003e\n\t\u003cpath class=\"st3\" d=\"M143.6,157.73l126.42-73.12c1.25-0.72,2.02-2.06,2.02-3.5l-0.03-43.77c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.46L64.99,121.37c-6.22,3.6-10.05,10.24-10.04,17.42l0.18,230.59c0,6.47,2.67,12.89,7.83,16.8\n\t\tc6.69,5.07,15.29,5.56,22.35,1.47l37.45-21.66c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-171.85\n\t\tC124.63,177.07,131.86,164.53,143.6,157.73z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M446.81,124.33c-3.15-1.82-6.61-2.72-10.06-2.72c-3.45,0-6.9,0.92-10.05,2.74L249.85,226.63\n\t\tc-6.2,3.58-10.05,10.26-10.04,17.42l0.18,231.47c0.01,7.27,3.77,13.78,10.07,17.41c6.3,3.63,13.82,3.63,20.11-0.02l176.85-102.29\n\t\tc6.2-3.59,10.05-10.26,10.04-17.42l-0.17-231.47C456.87,134.47,453.11,127.96,446.81,124.33z\"/\u003e\n\t\u003cpath class=\"st3\" d=\"M240.9,211.16l116.7-67.5c1.25-0.72,2.02-2.06,2.02-3.5l-0.04-50.98c0-6.48-2.68-12.9-7.85-16.8\n\t\tc-6.69-5.05-15.28-5.54-22.33-1.45l-48.41,28l-128.44,74.29c-6.22,3.6-10.05,10.24-10.04,17.42l0.13,174.18l0.04,56.41\n\t\tc0,6.48,2.67,12.89,7.83,16.8c6.69,5.07,15.29,5.55,22.35,1.47l47.17-27.29c1.25-0.72,2.02-2.06,2.02-3.5l-0.13-164.64\n\t\tC221.92,230.5,229.15,217.95,240.9,211.16z\"/\u003e\n\u003c/g\u003e" diff --git a/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json b/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json index ff0cf239b54..b298d748e80 100644 --- a/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json +++ b/server/meshmodel/dast-operator/0.3.2/v1.0.0/components/Dast.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Dast", diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json index 8b363d5515e..5cedf30794e 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Alertmanager.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json index 98d36dc985e..b317d6dcaaf 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PodMonitor.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json index e956f25afcd..0900af6e5ad 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/Prometheus.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json index 2de034be418..7315ab33d62 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/PrometheusRule.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json index 7a0f643ebab..fcf28a7aa34 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ServiceMonitor.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json index 08a83182e3f..8dd05759e29 100644 --- a/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/datarepo-monitoring/0.0.1/v1.0.0/components/ThanosRuler.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json index 4a10b81a318..218a401123f 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Alertmanager.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json index b33eb882108..bf4d9dac419 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PodMonitor.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json index 2572a78f1ff..e260c538345 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/Prometheus.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json index 1cdfb398597..d0cbfb39db5 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/PrometheusRule.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json index 744d7cc9ac9..8fc37c80fe5 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ServiceMonitor.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json index 8c739e492b2..e568fbe3521 100644 --- a/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/datarepomonitoring/0.0.3/v1.0.0/components/ThanosRuler.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json index a3121270363..71998d8ffda 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterServingRuntime.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json index 7f327c7d61c..e3ed7da1344 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ClusterStorageContainer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json index 0e34761e86f..bfe8f4fcfdc 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceGraph.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "InferenceGraph", diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json index 6e4d4a5a9bd..4d0337c8c27 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/InferenceService.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json index 868838285ff..935167990f3 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/ServingRuntime.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json index 84d6f57d77f..ef0ea69022d 100644 --- a/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json +++ b/server/meshmodel/deeploy/1.38.0/v1.0.0/components/TrainedModel.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", - "shape": "circle", + "primaryColor": "", + "secondaryColor": "", + "shape": "", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json index 1890368ec79..a2e6313c156 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Certificate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Certificate", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json index 419aca1c5c0..40d95d40169 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/CertificateRequest.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CertificateRequest", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json index 63b52268dab..7f1befa2948 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Challenge.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Challenge", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json index 0246f5cf396..eca826b23ca 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/ClusterIssuer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ClusterIssuer", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json index 57439c5dd28..b85072363da 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Issuer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Issuer", diff --git a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json index 4892e2fd1e3..ff03712cccc 100644 --- a/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json +++ b/server/meshmodel/devspace-cloud/0.3.3/v1.0.0/components/Order.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Order", diff --git a/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json b/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json index b2cd7911a9f..03d6b6f4aad 100644 --- a/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json +++ b/server/meshmodel/devtron-operator/0.22.71/v1.0.0/components/Installer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Installer", diff --git a/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json b/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json index 4511d93ea16..9ab5b475279 100644 --- a/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json +++ b/server/meshmodel/ditto-operator/0.3.0/v1.0.0/components/Ditto.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Ditto", diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json index ddc46cf3b41..ca69bc11c50 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json index bf76c155207..fddb149f0fc 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json index a3ae2e6f5a3..892b8ba9ddd 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/GrafanaAgent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json index 318f4b1542e..a2a4708b0ec 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Integration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json index 127c9a336ac..b302288239c 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/LogsInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json index 6beef718e77..9fa64de3fb9 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/MetricsInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json index 8cab46a79a0..97077fc3cd4 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodLogs.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json index 5bcaa1af60b..96f1b3f25d6 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json index c42b9565adf..10d298d1044 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json index cf82137aa14..234e5f76d22 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json index d2f4bc7b1cb..1c761880e77 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusAgent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json index f1726929a45..ade394a6513 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json index 2d83df3f1bd..8a31e5bb61c 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ScrapeConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json index 8c8f9a76088..927b3c8756b 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json index 12a33baaf8c..b97c963b148 100644 --- a/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/dnation-kubernetes-monitoring-stack/3.5.0/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"#248431\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"#F4790D\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"#E61F2E\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"#D6D7D8\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0742 62 39 57.0752 39 51C39 44.9248 34.0742 40 28 40C21.9258 40 17 44.9248 17 51C17 57.0752 21.9258 62 28 62ZM29 57C32.3125 57 35 54.3137 35 51C35 47.6863 32.3125 45 29 45C25.6875 45 23 47.6863 23 51C23 54.3137 25.6875 57 29 57Z\" fill=\"#D9D9D9\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"86\" height=\"62\" viewBox=\"0 0 86 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003ccircle cx=\"13\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"43\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003ccircle cx=\"73\" cy=\"13\" r=\"13\" fill=\"white\"/\u003e\n\u003cpath d=\"M43 62V34H48L62.5 51.5V34H69.5V62H64L49.5 45V62H43Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M34 62V34H40V62H34Z\" fill=\"white\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28 62C34.0751 62 39 57.0751 39 51C39 44.9249 34.0751 40 28 40C21.9249 40 17 44.9249 17 51C17 57.0751 21.9249 62 28 62ZM29 57C32.3137 57 35 54.3137 35 51C35 47.6863 32.3137 45 29 45C25.6863 45 23 47.6863 23 51C23 54.3137 25.6863 57 29 57Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json index 4e446072d1d..b2cf6aafbf3 100644 --- a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json +++ b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/Echo.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json index 8a6f2c49c3b..bbda28c014c 100644 --- a/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json +++ b/server/meshmodel/echoperator/0.0.2/v1.0.0/components/ScheduledEcho.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json b/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json index 6d151b46be0..b8e0f69b905 100644 --- a/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json +++ b/server/meshmodel/eclipse-che/7.86.0/v1.0.0/components/CheCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "CheCluster", diff --git a/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json b/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json index f2157aec21c..fa2c5e8ede0 100644 --- a/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json +++ b/server/meshmodel/edp-argocd-operator/0.3.0-SNAPSHOT.2/v1.0.0/components/ArgoApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "ArgoApplication", diff --git a/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json b/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json index 134a366274e..5078961d17f 100644 --- a/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json +++ b/server/meshmodel/edp-component-operator/0.14.0-SNAPSHOT.5/v1.0.0/components/EDPComponent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "EDPComponent", diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json index e5eae083c3c..ca80bb791f7 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDPipeline.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json index b044c459442..a8b927b1c32 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CDStageDeploy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json index cf2ef143f0e..ac4fb9c810b 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Codebase.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json index fbcc460c2bb..1d7c99e57bc 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseBranch.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json index b8b8022e550..1a2cad440bf 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/CodebaseImageStream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json index bfa0059bf29..090f4437f9a 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/EDPComponent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json index 40064f53880..eea28da8c2a 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Gerrit.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json index 436f25d7438..6a10cae1bf1 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json index eb73d6ec9c8..a58edbd6ede 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritGroupMember.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json index db20f0bc879..748114d1cf8 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritMergeRequest.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json index 50cb1657520..efff3cca8b7 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json index 4f5f52f2927..116ce1524fa 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritProjectAccess.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json index 986b5bc9d44..93b61c311d1 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GerritReplicationConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json index b213c1c678c..cea698b8e43 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/GitServer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json index 79ec89cc225..6efede1c61f 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraIssueMetadata.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json index ecbe6d00c3c..2e24ebeb7dc 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/JiraServer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json index a53a07add4f..56aab31ea17 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/QuickLink.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "" }, "component": { "kind": "QuickLink", diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json index 1971b11e027..a8045081fe4 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Stage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json index 957ab517be5..c6c46cf1f9d 100644 --- a/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json +++ b/server/meshmodel/edp-install/3.8.1/v1.0.0/components/Template.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#5ec6cc;}.cls-2{fill:#fff;}.cls-3{fill:#57c7d7;}.cls-4{fill:#37c2d6;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 137.15 161.5\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"MasterLayer_1\" data-name=\"MasterLayer 1\"\u003e\u003cpath d=\"M52.7,26.2c0-.74,0-1.44,0-2.14a15.36,15.36,0,0,1,2-8.73c1.85-3.44,3.41-7,5.25-10.47A9,9,0,0,1,66.69.18,9.76,9.76,0,0,1,76.62,4,24,24,0,0,1,78.82,8c1.49,3,2.94,6,4.43,9A10.64,10.64,0,0,1,84.42,22c0,1.4,0,2.8,0,4.18a68.65,68.65,0,1,1-31.71,0Zm0,3.07c-.36.08-.63.13-.9.2A64.89,64.89,0,0,0,13.22,57.66,63.26,63.26,0,0,0,3,92.9a72,72,0,0,0,.85,10.57A40,40,0,0,0,6,112.26a20.89,20.89,0,0,0,30.13,10.21,20.2,20.2,0,0,0,10.31-16.9c.19-3,0-6.07,0-9.11a2,2,0,0,0-.11-.42c-.34,0-.65,0-1,0A1.52,1.52,0,0,1,43.83,94c.13-.49.25-1,.38-1.47l1.44-5.72H35c-1.36,0-1.87-.53-1.88-1.89,0-.93,0-1.86,0-2.79A18,18,0,0,1,39,68.64c4.38-4.13,8.8-8.22,13.17-12.36a1.87,1.87,0,0,0,.51-1.21c0-8.3,0-16.61,0-24.91Zm31.84-.06a2.16,2.16,0,0,0-.08.39c0,8.58,0,17.16,0,25.74a1.38,1.38,0,0,0,.46.9q6.36,6,12.75,11.93a19.67,19.67,0,0,1,5.12,7.33,23.63,23.63,0,0,1,1.2,9.29c0,1.46-.51,2-2,2H92.46c-.29,0-.58,0-.91,0,.58,2.46,1.15,4.84,1.69,7.21a1.49,1.49,0,0,1-1.55,2c-.32,0-.65,0-1,0,0,3,0,5.8,0,8.63a21.52,21.52,0,0,0,.45,4.09,20.89,20.89,0,0,0,25.19,16.1c7.62-1.71,13-6.43,15.3-13.88A61.69,61.69,0,0,0,133,80.39,65.84,65.84,0,0,0,89.26,30.63C87.7,30.11,86.11,29.69,84.52,29.21Zm-3,43.84v-.8q0-25.24,0-50.48a7.64,7.64,0,0,0-.68-3c-1.14-2.53-2.44-5-3.65-7.49a.85.85,0,0,0-.9-.55q-7.73,0-15.45,0a.9.9,0,0,0-.94.61c-1.19,2.45-2.48,4.85-3.58,7.34a8.1,8.1,0,0,0-.72,3.25q-.06,25.11,0,50.22V73H67.13V40c0-1.47.46-2.16,1.42-2.17S70,38.53,70,40V73.05ZM61.8,96v32.48a6.85,6.85,0,0,0,6.81,6.83c4,0,7-3.13,7-7.48q0-15.44,0-30.89v-.93c-.53,0-.92,0-1.31,0a1.54,1.54,0,0,1-1.6-2.14c.18-.68.36-1.35.53-2,.43-1.68.84-3.35,1.27-5.07H62.7c.57,2.45,1.14,4.85,1.7,7.25A1.49,1.49,0,0,1,63,96C62.61,96.07,62.25,96,61.8,96Zm32.4-27v1c0,3,0,6,0,9,0,1.15-.53,1.75-1.48,1.74s-1.38-.55-1.38-1.7c0-3.55-.08-7.1,0-10.64a4.15,4.15,0,0,0-1.6-3.76c-1.83-1.5-3.49-3.2-5.3-4.89V83.82H101C101.52,77.64,99.09,72.86,94.2,69.05Zm-58,14.75H52.65V59.86l-4.22,3.92c-.88.83-2.08,1.53-2.52,2.55s-.13,2.37-.13,3.58c0,3.15,0,6.31,0,9.46a1.32,1.32,0,0,1-1.25,1.49,1.41,1.41,0,0,1-1.6-1.36c0-.22,0-.45,0-.68V70c0-.27,0-.54,0-.85C37.8,72.92,35.46,78.27,36.16,83.8ZM81.51,76H55.64V83.8H81.51ZM47,93.11H61.2l-1.5-6.34H48.65Zm43,0c-.39-1.67-.75-3.22-1.12-4.77s-.4-1.62-2.09-1.62H77.52C77,88.87,76.45,91,75.9,93.12ZM75.28,7.84c-.53-2.57-3.51-5.28-7.6-4.86-2.72.27-5.62,2.63-5.79,4.86H75.28Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M52.68,29.27v.89c0,8.3,0,16.61,0,24.91a1.87,1.87,0,0,1-.51,1.21C47.78,60.42,43.36,64.51,39,68.64a18,18,0,0,0-5.85,13.43c0,.93,0,1.86,0,2.79,0,1.36.52,1.89,1.88,1.89H45.65l-1.44,5.72c-.13.49-.25,1-.38,1.47A1.52,1.52,0,0,0,45.39,96c.31,0,.62,0,1,0a2,2,0,0,1,.11.42c0,3,.16,6.08,0,9.11a20.2,20.2,0,0,1-10.31,16.9A20.89,20.89,0,0,1,6,112.26a40,40,0,0,1-2.19-8.79A72,72,0,0,1,3,92.9,63.26,63.26,0,0,1,13.22,57.66,64.89,64.89,0,0,1,51.78,29.47C52.05,29.4,52.32,29.35,52.68,29.27Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M84.52,29.21c1.59.48,3.18.9,4.74,1.42A65.84,65.84,0,0,1,133,80.39,61.69,61.69,0,0,1,131.62,111c-2.32,7.45-7.68,12.17-15.3,13.88a20.89,20.89,0,0,1-25.19-16.1,21.52,21.52,0,0,1-.45-4.09c-.06-2.83,0-5.67,0-8.63.38,0,.71,0,1,0a1.49,1.49,0,0,0,1.55-2c-.54-2.37-1.11-4.75-1.69-7.21.33,0,.62,0,.91,0H102c1.48,0,2-.51,2-2a23.63,23.63,0,0,0-1.2-9.29,19.67,19.67,0,0,0-5.12-7.33q-6.4-5.93-12.75-11.93a1.38,1.38,0,0,1-.46-.9c0-8.58,0-17.16,0-25.74A2.16,2.16,0,0,1,84.52,29.21Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.54,73.05H70V40c0-1.44-.48-2.16-1.43-2.15s-1.42.7-1.42,2.17V73H55.57v-.89q0-25.11,0-50.22a8.1,8.1,0,0,1,.72-3.25c1.1-2.49,2.39-4.89,3.58-7.34a.9.9,0,0,1,.94-.61q7.72,0,15.45,0a.85.85,0,0,1,.9.55c1.21,2.5,2.51,5,3.65,7.49a7.64,7.64,0,0,1,.68,3q.06,25.23,0,50.48ZM68.1,16.48a8.68,8.68,0,0,0-4.81,1.57,9.05,9.05,0,0,0-4.08,7.8,1.37,1.37,0,0,0,1.36,1.43A1.46,1.46,0,0,0,62,26c0-.25,0-.5.07-.75A6.51,6.51,0,0,1,71,19.79a6.32,6.32,0,0,1,4.1,5.78c.09,1.11.61,1.72,1.46,1.71s1.42-.7,1.39-1.84A9.3,9.3,0,0,0,68.1,16.48Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M61.8,96c.45,0,.81,0,1.17,0a1.49,1.49,0,0,0,1.43-2c-.56-2.4-1.13-4.8-1.7-7.25H74.49c-.43,1.72-.84,3.39-1.27,5.07-.17.68-.35,1.35-.53,2A1.54,1.54,0,0,0,74.29,96c.39,0,.78,0,1.31,0V97q0,15.45,0,30.89c0,4.35-3,7.51-7,7.48a6.85,6.85,0,0,1-6.81-6.83V96Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M94.2,69.05c4.89,3.81,7.32,8.59,6.82,14.77H84.48V59.87c1.81,1.69,3.47,3.39,5.3,4.89a4.15,4.15,0,0,1,1.6,3.76c-.12,3.54,0,7.09,0,10.64,0,1.15.45,1.69,1.38,1.7s1.48-.59,1.48-1.74c0-3,0-6,0-9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.16,83.8c-.7-5.53,1.64-10.88,6.71-14.69,0,.31,0,.58,0,.85v8.86c0,.23,0,.46,0,.68a1.41,1.41,0,0,0,1.6,1.36,1.32,1.32,0,0,0,1.25-1.49c0-3.15,0-6.31,0-9.46,0-1.21-.31-2.56.13-3.58s1.64-1.72,2.52-2.55l4.22-3.92V83.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M81.51,76V83.8H55.64V76Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47,93.11l1.61-6.34H59.7l1.5,6.34Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M90.06,93.12H75.9c.55-2.16,1.08-4.25,1.62-6.39h9.33c1.69,0,1.7,0,2.09,1.62S89.67,91.45,90.06,93.12Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M75.28,7.84H61.89C62.06,5.61,65,3.25,67.68,3,71.77,2.56,74.75,5.27,75.28,7.84Z\"/\u003e\u003cpath d=\"M68.1,16.48a9.3,9.3,0,0,1,9.82,9c0,1.14-.48,1.82-1.39,1.84s-1.37-.6-1.46-1.71A6.32,6.32,0,0,0,71,19.79a6.51,6.51,0,0,0-8.9,5.45c0,.25,0,.5-.07.75a1.46,1.46,0,0,1-1.43,1.29,1.37,1.37,0,0,1-1.36-1.43,9.05,9.05,0,0,1,4.08-7.8A8.68,8.68,0,0,1,68.1,16.48Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json index 2ceb9f13130..0f20f485e20 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/Kafka.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json index 298df52c9c0..acb503dea51 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaBridge.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json index 89cf553409c..fd89e1042c0 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnect.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json index 3b6e1a2f975..b02327aa028 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaConnector.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json index 2640ef08efa..8d1b7ddab1a 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json index cda8eb73d87..31f94d98808 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json index 2fc4c8c4fa0..2fbd648274f 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaNodePool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json index e817c7249a4..8055973b38e 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaRebalance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json index 33631d1e0cb..050defe3eb6 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaTopic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json index 2c0afb61dd4..72c436f918c 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/KafkaUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json index ce65846fd77..c9c4126dc77 100644 --- a/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/egeria-base/4.3.0/v1.0.0/components/StrimziPodSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json index dd75b006fdc..78148c04599 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/Kafka.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json index bcaddfc8dfc..274f71cda2e 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaBridge.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json index 929bb4e7f30..c7626ef079a 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnect.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json index 8b7fadd0c7b..43fcc37bab0 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaConnector.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json index e298fc50c2e..0cd5266b54e 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json index cbb6f02e83d..cd65a345300 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json index fc848836232..98470edae7e 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaNodePool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json index a1699761bdb..bc5afbd6ccf 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaRebalance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json index b56a2be6088..d47a04bcb35 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaTopic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json index f15a5f4ead0..c700decbdc8 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/KafkaUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json index 4a5e047e759..85ddf6a3a27 100644 --- a/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/egeria-cts/4.3.0/v1.0.0/components/StrimziPodSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json index eb2c7b249df..984d683fee9 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/Kafka.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json index 3cda2d61ac4..2e3d06ad987 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaBridge.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json index d1addd7b936..774fa4310df 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnect.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json index 33574c10f80..cbb107da5de 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaConnector.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json index ad3ed86a6da..a4e14c506be 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json index 4d7b04e9c76..362d87eb38b 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaMirrorMaker2.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json index 26598416a1a..fee1376a107 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaNodePool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json index d472ddbabef..aac74a2de45 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaRebalance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json index 47c829771de..de370ea816f 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaTopic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json index f54547f89f1..1c370bd9185 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/KafkaUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json index 5f30bc5dc4c..69011decc81 100644 --- a/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json +++ b/server/meshmodel/egeria-pts/4.3.0/v1.0.0/components/StrimziPodSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M201.876 87.3678C198.259 85.5437 195.227 82.7396 193.127 79.2754C190.134 74.4621 188.633 69.3507 190.352 63.6649C190.645 62.5915 190.827 61.4906 190.893 60.3797C191.366 54.8418 190.631 49.3657 190.009 43.8811C189.081 35.6735 187.108 27.8005 182.73 20.6921C182.593 20.5286 182.49 20.3399 182.426 20.1365C182.362 19.9332 182.339 19.7193 182.358 19.5071C182.377 19.2948 182.437 19.0884 182.536 18.8995C182.635 18.7106 182.77 18.5431 182.933 18.4063C182.95 18.3923 182.967 18.3787 182.984 18.3653C185.685 15.4438 187.816 12.0433 189.267 8.33897C189.668 7.32858 189.654 6.20088 189.229 5.20062C188.803 4.20036 188.001 3.40823 186.995 2.99616C185.989 2.58409 184.861 2.58531 183.856 2.99957C182.851 3.41383 182.05 4.20769 181.627 5.20888C179.699 9.56235 176.84 13.4396 173.25 16.567C167.1 22.305 160.106 26.9377 153.236 31.7242C142.22 39.401 131.427 47.3359 122.05 57.0424C109.228 70.1487 99.986 86.3273 95.2084 104.029C90.7769 120.929 89.3819 138.482 91.0883 155.87C92.0383 167.533 95.5415 178.844 101.35 189.003C106.403 197.84 113.129 205.301 120.508 212.224C126.616 217.956 133.16 223.218 138.944 229.299C143.112 233.681 146.778 238.431 148.692 244.252C151.802 253.7 150.995 263.113 147.658 272.289C144.606 280.679 139.066 286.893 130.448 289.994C129.896 290.186 129.395 290.501 128.983 290.914C128.571 291.328 128.258 291.829 128.068 292.381C127.766 293.104 127.688 293.9 127.844 294.667C127.999 295.434 128.382 296.136 128.941 296.683C129.499 297.301 130.237 297.729 131.05 297.907C131.863 298.085 132.712 298.005 133.477 297.677C141.596 294.798 148.378 289.043 152.539 281.501C156.852 274.083 158.432 265.945 158.771 257.465C159.262 248.305 156.714 239.241 151.524 231.677C148.224 227.005 144.421 222.708 140.184 218.864C133.944 212.989 127.301 207.552 121.301 201.415C112.859 192.781 106.283 182.996 102.591 171.399C99.5309 161.788 98.6608 151.894 98.6887 141.877C98.6854 133.595 99.3651 125.327 100.721 117.156C102.888 103.802 107.667 91.007 114.784 79.502C122.245 67.607 132.082 57.9537 143.064 49.356C153.551 41.1449 165.003 34.2594 175.306 25.7998C175.939 25.2812 176.078 25.6762 176.314 26.121C177.615 28.4947 178.696 30.9819 179.545 33.5518C181.309 39.1308 181.804 44.9269 182.442 50.6939C182.975 54.2454 182.961 57.8576 182.401 61.405C181.946 63.7268 181.161 65.9952 181.306 68.4019C182.011 80.2024 187.803 88.8026 197.898 94.6738C199.521 95.619 199.67 95.877 198.959 97.6415C197.991 99.8622 196.681 101.918 195.077 103.733C194.377 104.564 194.032 105.637 194.118 106.72C194.204 107.803 194.713 108.808 195.535 109.518C196.358 110.228 197.427 110.586 198.511 110.513C199.594 110.44 200.606 109.943 201.326 109.129C203.687 106.616 205.528 103.661 206.743 100.433C208.635 95.2082 207.588 90.2143 201.876 87.3678Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M66.1227 61.6401C69.1437 57.1358 72.1914 52.6485 75.1991 48.1357C77.2859 45.0032 75.9662 41.3024 72.4823 40.4105C71.4823 40.1868 70.4373 40.2844 69.496 40.6893C68.5548 41.0942 67.7653 41.7859 67.24 42.6657C62.5835 49.5713 57.939 56.4855 53.3067 63.4081C40.0827 83.1095 26.8567 102.81 13.6287 122.51C12.9335 123.415 12.4895 124.487 12.3418 125.618C12.374 126.959 12.8443 128.252 13.6808 129.3C26.1236 147.835 38.5615 166.374 50.9946 184.917L67.1818 209.045C67.6607 209.896 68.3902 210.58 69.2711 211.002C70.152 211.424 71.1416 211.565 72.1054 211.405C75.5917 210.871 77.4943 206.975 75.107 203.452C64.7873 188.216 54.5743 172.908 44.3236 157.627C37.4721 147.411 30.6214 137.195 23.7715 126.979C23.3752 126.389 22.9438 125.953 23.5291 125.085C37.7508 103.955 51.9479 82.8062 66.1203 61.6401L66.1227 61.6401ZM246.359 68.8915C240.531 60.2069 234.708 51.5183 228.889 42.8256C228.454 42.0975 227.849 41.4855 227.126 41.0418C226.404 40.598 225.584 40.3357 224.738 40.2772C223.863 40.2609 223 40.4814 222.241 40.9153C221.481 41.3493 220.853 41.9806 220.423 42.7424C219.993 43.5042 219.777 44.3682 219.798 45.2427C219.819 46.1173 220.075 46.9699 220.541 47.7104C221.667 49.5729 222.926 51.3555 224.14 53.1647C240.205 77.0833 256.277 100.996 272.358 124.903C272.602 125.19 272.731 125.556 272.721 125.931C272.712 126.307 272.564 126.666 272.306 126.939C270.242 129.926 268.231 132.95 266.206 135.965C257.863 148.386 249.522 160.808 241.182 173.231C234.437 183.283 227.695 193.338 220.957 203.395C220.499 203.96 220.164 204.614 219.974 205.316C219.784 206.018 219.743 206.752 219.854 207.471C220.024 208.444 220.489 209.342 221.185 210.043C221.882 210.744 222.776 211.214 223.748 211.391C224.72 211.568 225.723 211.442 226.622 211.031C227.52 210.62 228.271 209.943 228.773 209.092C235.733 198.717 242.699 188.347 249.673 177.981C260.549 161.779 271.422 145.574 282.29 129.366C284.105 126.66 284.117 125.154 282.302 122.447C270.324 104.593 258.343 86.7414 246.36 68.8915L246.359 68.8915Z\" fill=\"#70CCDB\"/\u003e\n\u003cpath d=\"M167.754 82.1825C168.465 81.8634 169.069 81.3468 169.495 80.6941C169.92 80.0414 170.15 79.2802 170.155 78.501C170.197 78.3004 170.196 78.0932 170.152 77.893C170.108 77.6928 170.022 77.5041 169.9 77.3394C169.779 77.1746 169.623 77.0375 169.445 76.9369C169.266 76.8364 169.068 76.7747 168.864 76.756C167.426 76.4297 165.964 76.2206 164.492 76.1307C163.743 76.2556 162.504 75.7708 162.129 77.2807C161.899 78.0248 161.887 78.8194 162.095 79.57C162.303 80.3205 162.723 80.9956 163.303 81.5147C163.893 82.0586 164.633 82.413 165.426 82.532C166.22 82.6511 167.031 82.5293 167.754 82.1825Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M156.123 79.0042C156.123 79.4464 156.111 79.8656 156.126 80.2836C156.24 82.6672 157.297 84.9077 159.063 86.5123C160.829 88.1169 163.161 88.9541 165.544 88.8398C167.928 88.7255 170.168 87.6689 171.773 85.9027C173.378 84.1364 174.215 81.805 174.1 79.4214C174.094 79.2804 174.084 79.1397 174.07 78.9991C173.622 76.1618 172.212 73.5649 170.077 71.644C167.941 69.7231 165.21 68.5951 162.341 68.4492C158.346 68.3364 155.032 70.1215 151.897 72.2421C148.968 74.2246 145.992 75.2971 142.505 73.9871C142.369 73.9676 142.23 73.9738 142.096 74.0053C142.893 79.2534 147.619 80.9487 156.123 79.0042ZM162.129 77.2808C162.504 75.7708 163.743 76.2556 164.492 76.1308C165.964 76.2207 167.426 76.4298 168.864 76.7561C169.068 76.7748 169.266 76.8365 169.445 76.937C169.623 77.0375 169.779 77.1747 169.901 77.3394C170.022 77.5042 170.108 77.6929 170.152 77.8931C170.196 78.0933 170.197 78.3005 170.155 78.5011C170.15 79.2802 169.921 80.0415 169.495 80.6942C169.069 81.3469 168.465 81.8635 167.754 82.1826C167.031 82.5294 166.22 82.6511 165.426 82.5321C164.633 82.413 163.893 82.0587 163.303 81.5148C162.723 80.9956 162.303 80.3206 162.095 79.57C161.887 78.8195 161.899 78.0249 162.129 77.2808Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M188.118 135.596C187.539 135.111 186.833 134.8 186.084 134.699C185.335 134.598 184.572 134.712 183.885 135.027C183.093 135.353 182.422 135.919 181.966 136.645C181.511 137.372 181.294 138.222 181.345 139.078C181.363 140.675 181.15 142.267 180.714 143.804C180.538 144.513 180.147 145.15 179.594 145.628C179.041 146.105 178.354 146.4 177.627 146.472C174.931 146.769 172.213 146.81 169.508 146.593C160.272 146.179 151.077 145.231 141.868 144.436C139.6 144.301 137.381 143.715 135.342 142.713C133.302 141.711 131.482 140.313 129.988 138.6C127.339 135.591 124.978 132.341 122.935 128.891C122.517 130.226 122.327 131.621 122.373 133.019C122.259 140.383 124.817 146.396 131.495 150.082C132.929 150.873 133.133 151.521 132.746 153.039C130.317 163.093 129.946 173.535 131.653 183.736C132.514 190.083 134.762 196.162 138.239 201.541C139.41 203.499 141.197 205.013 143.32 205.846C141.495 201.77 140.37 197.415 139.993 192.965C139.156 185.458 138.951 177.893 139.382 170.351C139.567 164.836 140.129 159.341 141.061 153.903C141.243 152.948 141.555 152.641 142.566 152.747C147.332 153.242 152.103 153.688 156.878 154.084C163.482 154.715 170.116 154.966 176.749 154.834C181.729 154.67 185.656 152.728 187.896 148.081C189.188 145.093 189.787 141.852 189.649 138.599C189.647 138.014 189.507 137.437 189.242 136.915C188.976 136.393 188.591 135.942 188.118 135.596Z\" fill=\"black\"/\u003e\n\u003cpath d=\"M190.163 112.776C187.836 113.203 185.575 113.935 183.439 114.953C178.609 116.878 173.751 118.73 168.757 120.669C172.715 124.468 176.418 128.364 181.093 131.131C181.897 131.581 182.77 131.892 183.678 132.052C185.142 132.398 186.679 132.257 188.055 131.65C189.431 131.043 190.572 130.003 191.304 128.689C189.836 128.526 188.425 128.028 187.18 127.234C185.935 126.439 184.888 125.37 184.121 124.108C183.582 123.35 183.678 123.204 184.405 122.82C185.841 122.125 187.214 121.304 188.507 120.368C192.097 117.556 195.906 116.221 200.581 118.323C200.387 117.899 200.324 117.746 200.249 117.599C199.257 115.865 197.76 114.476 195.958 113.614C194.157 112.752 192.135 112.46 190.163 112.776Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M201.87636,87.3678a21.61134,21.61134,0,0,1-8.74917-8.09239c-2.99318-4.81332-4.49336-9.92465-2.77507-15.61044a16.12587,16.12587,0,0,0,.5417-3.28519c.47262-5.53794-.26293-11.014-.88459-16.49866-.92823-8.20754-2.901-16.08063-7.27931-23.189a1.62265,1.62265,0,0,1,.20347-2.28574q.02508-.021.051-.041A31.93417,31.93417,0,0,0,189.26761,8.339a4.12861,4.12861,0,0,0-7.6404-3.13009A32.53063,32.53063,0,0,1,173.25,16.56707c-6.14983,5.73794-13.1432,10.37065-20.01409,15.15721-11.01523,7.67678-21.8088,15.6117-31.18569,25.31816A107.09636,107.09636,0,0,0,95.2088,104.02888a147.5636,147.5636,0,0,0-4.12008,51.84081,79.803,79.803,0,0,0,10.26148,33.133c5.05326,8.8377,11.77874,16.29874,19.15857,23.22178,6.10753,5.73179,12.65121,10.99348,18.43515,17.07423,4.16859,4.38191,7.83432,9.13215,9.74892,14.95366,3.10953,9.44723,2.30245,18.86043-1.03481,28.03622-3.05133,8.39052-8.59171,14.60463-17.21,17.70565a3.85819,3.85819,0,0,0-2.38,2.38721,3.90916,3.90916,0,0,0,.87372,4.30188,3.99278,3.99278,0,0,0,4.53575.99369,35.20868,35.20868,0,0,0,19.06161-16.17633c4.31282-7.4174,5.893-15.55586,6.2323-24.036a41.64126,41.64126,0,0,0-7.24655-25.78716A78.28831,78.28831,0,0,0,140.18478,218.864c-6.24073-5.87484-12.88381-11.31219-18.8835-17.44878-8.44141-8.63408-15.01779-18.41932-18.71021-30.01626-3.05976-9.61084-3.92985-19.50517-3.902-29.5219a150.64972,150.64972,0,0,1,2.03219-24.72077A102.90874,102.90874,0,0,1,114.78422,79.502c7.461-11.895,17.29849-21.54822,28.27978-30.14592,10.487-8.21116,21.9397-15.09663,32.24245-23.55623.63253-.51863.77188-.12359,1.00819.32114a44.56812,44.56812,0,0,1,3.23068,7.43079c1.76437,5.57907,2.25881,11.37513,2.8974,17.14214a35.20012,35.20012,0,0,1-.04119,10.71109c-.45561,2.32183-1.23969,4.59026-1.09546,6.99693.70523,11.80049,6.49768,20.40069,16.592,26.27184,1.62377.94524,1.77281,1.20329,1.06151,2.96774a23.21091,23.21091,0,0,1-3.88259,6.0917,4.1286,4.1286,0,0,0,6.24924,5.39615,26.135,26.135,0,0,0,5.41679-8.69592C208.63579,95.20819,207.58885,90.21432,201.87636,87.3678Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M66.12314,61.64005c3.021-4.50427,6.0687-8.99157,9.0764-13.50432,2.08672-3.1325.76706-6.83334-2.71686-7.72523a4.86783,4.86783,0,0,0-5.24226,2.25516Q60.2556,53.02415,53.30713,63.40806q-19.836,29.55221-39.678,59.102a6.477,6.477,0,0,0-1.28693,3.10827,6.13781,6.13781,0,0,0,1.339,3.68146Q32.34539,157.10333,50.995,184.91658l16.18723,24.12816a4.75633,4.75633,0,0,0,4.92355,2.36059c3.48635-.5344,5.38888-4.43035,3.00163-7.95306-10.31969-15.236-20.53275-30.54465-30.78338-45.82546q-10.27728-15.32321-20.55214-30.64766c-.39626-.59015-.82766-1.0264-.24236-1.89405q21.33255-31.69587,42.59117-63.445Zm180.236,7.25142q-8.74193-13.02687-17.46933-26.06585a5.25923,5.25923,0,0,0-4.15162-2.54842,4.85085,4.85085,0,0,0-4.19647,7.43319c1.12577,1.86254,2.38483,3.6451,3.59905,5.45432q24.09664,35.8778,48.21756,71.73863a1.52563,1.52563,0,0,1-.05211,2.03582c-2.0637,2.98709-4.07529,6.01054-6.1002,9.0255q-12.51424,18.63145-25.02368,37.26651-10.11735,15.07845-20.225,30.16415a5.20233,5.20233,0,0,0-1.10274,4.0753,4.83024,4.83024,0,0,0,8.91886,1.62139q10.43966-15.562,20.89992-31.11058,16.3145-24.30388,32.61684-48.615c1.81528-2.706,1.82739-4.21222.01211-6.91938q-17.96736-26.7808-35.942-53.55555Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M167.75444,82.18251A4.06549,4.06549,0,0,0,170.155,78.501a1.45406,1.45406,0,0,0-1.29057-1.745,27.26729,27.26729,0,0,0-4.37214-.62528c-.749.12485-1.98856-.3599-2.363,1.15a4.06666,4.06666,0,0,0,1.17423,4.234A4.00969,4.00969,0,0,0,167.75444,82.18251Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M156.12362,79.00419c0,.44223-.01213.86145.00244,1.27941a8.99762,8.99762,0,0,0,17.97458-.86218q-.0102-.21147-.03025-.42233a12.51792,12.51792,0,0,0-11.729-10.54993c-3.9953-.11272-7.30956,1.67229-10.44453,3.79294-2.92892,1.98249-5.90509,3.055-9.39146,1.745a1.10786,1.10786,0,0,0-.40953.01819C142.89307,79.25337,147.61868,80.94874,156.12362,79.00419Zm6.00568-1.72339c.37447-1.51,1.61408-1.0252,2.363-1.15a27.26729,27.26729,0,0,1,4.37214.62528,1.45406,1.45406,0,0,1,1.29057,1.745,4.06549,4.06549,0,0,1-2.4006,3.68148,4.00969,4.00969,0,0,1-4.45091-.66773A4.06666,4.06666,0,0,1,162.1293,77.2808Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M188.11764,135.59628h-.00007a3.9989,3.9989,0,0,0-4.2328-.56958,4.11421,4.11421,0,0,0-2.54,4.05107,16.63914,16.63914,0,0,1-.63134,4.72605,3.53831,3.53831,0,0,1-3.08645,2.66835,42.92711,42.92711,0,0,1-8.119.12122c-9.23636-.41448-18.43152-1.36209-27.64-2.157a17.12388,17.12388,0,0,1-11.88052-5.836,64.20922,64.20922,0,0,1-7.05269-9.709,12.42642,12.42642,0,0,0-.56226,4.1274c-.1139,7.36415,2.44424,13.37708,9.12246,17.06337,1.43354.79132,1.63716,1.43842,1.25056,2.9568a76.76809,76.76809,0,0,0-1.093,30.69738,43.58946,43.58946,0,0,0,6.58613,17.805,10.30761,10.30761,0,0,0,5.08108,4.30432,39.71,39.71,0,0,1-3.32765-12.88026,134.7838,134.7838,0,0,1-.61071-22.61462,121.47129,121.47129,0,0,1,1.67954-16.44777c.1818-.95493.49319-1.26151,1.50507-1.156q7.14843.74277,14.31136,1.33658a172.50608,172.50608,0,0,0,19.87113.75013c4.98049-.16361,8.90671-2.10616,11.14733-6.75219a21.59563,21.59563,0,0,0,1.75232-9.48236A3.73242,3.73242,0,0,0,188.11764,135.59628Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M190.16307,112.77561a26.961,26.961,0,0,0-6.72422,2.1776c-4.83027,1.92435-9.68834,3.77719-14.68222,5.71611,3.95774,3.799,7.661,7.69491,12.33613,10.46148a8.183,8.183,0,0,0,2.58477.921,6.9074,6.9074,0,0,0,7.6259-3.36278,9.65559,9.65559,0,0,1-7.18235-4.58057c-.53926-.75863-.44355-.904.2835-1.2882a27.1888,27.1888,0,0,0,4.102-2.45267c3.59058-2.81139,7.39928-4.14678,12.07437-2.04432-.19386-.42411-.25687-.57676-.332-.72462A9.8314,9.8314,0,0,0,190.16307,112.77561Z\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json index 2b36ce8d1a3..d54406731d2 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDB.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json index 829b3f34818..47653aeb8d3 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMulti.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", - "svgComplete": "", - "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MongoDBMulti", diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json index d66af66e9cf..54097a3aede 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBMultiCluster.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", - "svgComplete": "", - "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MongoDBMultiCluster", diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json index d0864af0c3e..4533ac64c8f 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBOpsManager.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", - "svgComplete": "", - "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MongoDBOpsManager", diff --git a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json index bfab5c73d6e..e57c657ec09 100644 --- a/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json +++ b/server/meshmodel/enterprise-operator/1.25.0/v1.0.0/components/MongoDBUser.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"120\" height=\"257\" viewBox=\"0 0 120 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M82.3229 28.5501C71.5367 15.7947 62.2485 2.84006 60.351 0.149477C60.1512 -0.0498257 59.8515 -0.0498257 59.6518 0.149477C57.7542 2.84006 48.4661 15.7947 37.6798 28.5501C-54.9019 146.238 52.2613 225.661 52.2613 225.661L53.1601 226.258C53.959 238.516 55.9565 256.154 55.9565 256.154H59.9514H63.9463C63.9463 256.154 65.9438 238.615 66.7428 226.258L67.6416 225.561C67.7414 225.561 174.905 146.238 82.3229 28.5501ZM59.9514 223.867C59.9514 223.867 55.1576 219.781 53.8592 217.688V217.489L59.6518 89.3375C59.6518 88.9389 60.2511 88.9389 60.2511 89.3375L66.0436 217.489V217.688C64.7453 219.781 59.9514 223.867 59.9514 223.867Z\" fill=\"#00ED64\"/\u003e\n\u003c/svg\u003e\r", - "svgComplete": "", - "svgWhite": "\u003csvg width=\"120\" height=\"258\" viewBox=\"0 0 120 258\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M83.0089 28.7559C72.1328 15.9086 62.7673 2.86053 60.8539 0.150554C60.6525 -0.0501848 60.3503 -0.0501848 60.1489 0.150554C58.2355 2.86053 48.8699 15.9086 37.9938 28.7559C-55.3594 147.292 52.6968 227.287 52.6968 227.287L53.6031 227.889C54.4087 240.235 56.4228 258 56.4228 258H60.451H64.4792C64.4792 258 66.4934 240.335 67.299 227.889L68.2052 227.187C68.306 227.187 176.362 147.292 83.0089 28.7559ZM60.451 225.48C60.451 225.48 55.6172 221.365 54.3081 219.257V219.057L60.1489 89.9813C60.1489 89.5798 60.7532 89.5798 60.7532 89.9813L66.594 219.057V219.257C65.2848 221.365 60.451 225.48 60.451 225.48Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MongoDBUser", diff --git a/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json b/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json index f63878c5f22..a9894ff72b3 100644 --- a/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json +++ b/server/meshmodel/epinio/1.11.1/v1.0.0/components/App.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", - "svgComplete": "", - "svgWhite": "" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "App", diff --git a/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json b/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json index 529ea5827ac..fb64e1e5a44 100644 --- a/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json +++ b/server/meshmodel/epinio/1.11.1/v1.0.0/components/AppChart.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", - "svgComplete": "", - "svgWhite": "" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AppChart", diff --git a/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json b/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json index eacc644d970..121aa611b56 100644 --- a/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json +++ b/server/meshmodel/epinio/1.11.1/v1.0.0/components/Service.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "circle", + "secondaryColor": "#00B39F", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", - "svgComplete": "", - "svgWhite": "" + "subCategory": "", + "svgColor": "#00D3A9", + "svgComplete": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Service", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json index 6fac23c7625..bada81ee8e3 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdBackup", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json index 82640133dbf..3e2550c1340 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdBackupSchedule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdBackupSchedule", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json index b5e2e5b8f38..31b4f9b5781 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdCluster", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json index 3d3860fd31d..f86d9dc1299 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdPeer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdPeer", diff --git a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json index 3b86b27daf1..2678e6c7a24 100644 --- a/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json +++ b/server/meshmodel/etcd-cluster-operator/0.1.6/v1.0.0/components/EtcdRestore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#419eda", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#419eda}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-6.31 3.69 510.12 493.62\" width='510.12' height='493.62'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath d=\"M228.175 224.684a31.994 31.994 0 1 1-32.007-31.986 32.011 32.011 0 0 1 32.007 31.986zm41.37 0a32.007 32.007 0 1 0 32.007-31.986 31.988 31.988 0 0 0-32.007 31.986z\" class=\"cls-1\"/\u003e\u003cpath d=\"M487.371 259.399a87.82 87.82 0 0 1-7.07.267 92.362 92.362 0 0 1-40.621-9.455 377.209 377.209 0 0 0 5.47-71.86 371.808 371.808 0 0 0-46.507-55.11 92.396 92.396 0 0 1 32.772-35.102l6.016-3.729-4.695-5.3a244.906 244.906 0 0 0-85.524-62.377l-6.507-2.828-1.654 6.862a92.144 92.144 0 0 1-23.19 42.096 371.928 371.928 0 0 0-67.006-27.602 370.624 370.624 0 0 0-66.908 27.558 91.915 91.915 0 0 1-23.098-42.003l-1.681-6.884-6.486 2.817a247.232 247.232 0 0 0-85.518 62.355l-4.689 5.3 6.005 3.724a92.249 92.249 0 0 1 32.695 34.917 374.63 374.63 0 0 0-46.425 54.908 376.956 376.956 0 0 0 5.328 72.334 92.115 92.115 0 0 1-40.376 9.374 86.36 86.36 0 0 1-7.086-.268l-7.053-.551.655 7.042a243.413 243.413 0 0 0 32.897 100.678l3.581 6.098 5.372-4.575a92.052 92.052 0 0 1 43.592-20.406 373.97 373.97 0 0 0 37.308 60.76 377.717 377.717 0 0 0 70.69 17.382 91.87 91.87 0 0 1-5.885 48.232l-2.686 6.54 6.9 1.529a246.355 246.355 0 0 0 52.966 5.857l52.954-5.857 6.906-1.529-2.675-6.54a91.755 91.755 0 0 1-5.869-48.286 377.784 377.784 0 0 0 70.407-17.328 372.3 372.3 0 0 0 37.335-60.815 92.233 92.233 0 0 1 43.81 20.428l5.377 4.553 3.587-6.049a242.844 242.844 0 0 0 32.859-100.672l.655-7.037zM324.644 345.45a285.884 285.884 0 0 1-151.628 0 290.124 290.124 0 0 1-46.141-143.385 288.675 288.675 0 0 1 54.957-52.315 293.065 293.065 0 0 1 67.028-36.462 293.976 293.976 0 0 1 66.891 36.364 290.886 290.886 0 0 1 55.198 52.675 292.253 292.253 0 0 1-13.817 74.682 293.726 293.726 0 0 1-32.488 68.441z\" class=\"cls-1\"/\u003e\u003c/svg\u003e\n" }, "component": { "kind": "EtcdRestore", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json index 6be5067cd18..fe1de67a783 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AWSChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AWSChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json index 90692c91b14..43a335171f4 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/AzureChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "AzureChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json index 5a096e0be7a..45ebf77c96e 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/DNSChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DNSChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json index 1e847bd01bf..486d31639e0 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/GCPChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "GCPChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json index 043c24ea0b0..d323d27ebb9 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/HTTPChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "HTTPChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json index 35a8c4527cb..d85e98fc573 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/IOChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "IOChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json index 16be520be4c..b48eb86751e 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/JVMChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "JVMChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json index fabf8bdf8eb..534378fed3f 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/KernelChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "KernelChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json index 3ef1a3e0c52..e5e06ad51d4 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/NetworkChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "NetworkChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json index 5527b468d4a..9edd882171b 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachine.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PhysicalMachine", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json index ac81954ad4c..ed1fbc4685b 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PhysicalMachineChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PhysicalMachineChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json index 627c20055fb..9709f17fbf2 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json index e40417a0087..db7a710e0f6 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodHttpChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodHttpChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json index 34af7d8a8d5..6c1f001228f 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodIOChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodIOChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json index 2b47e6f65df..c85a997eb77 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/PodNetworkChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "PodNetworkChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json index 4a65d0d2503..2515e96c9a7 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Schedule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Schedule", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json index 652763e5aa0..ecb8fdc6e87 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StatusCheck.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "StatusCheck", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json index 248e41bb54a..ddade61bea9 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/StressChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "StressChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json index f84851a9ef8..b436c8c79fb 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/TimeChaos.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "TimeChaos", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json index 1ded559af4a..47e1a453f3a 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/Workflow.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "Workflow", diff --git a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json index 003a68195a0..81c5e8d3163 100644 --- a/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json +++ b/server/meshmodel/example-chaos/14.6.301/v1.0.0/components/WorkflowNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#172d73;}.cls-2{fill:#fefefe;}.cls-3{fill:#4ccaf8;}.cls-4{fill:#f488a5;}.cls-5{fill:#4bcaf8;}.cls-6{fill:#4bcbf9;}.cls-7{fill:#f589a5;}.cls-8{fill:#f489a5;}.cls-9{fill:#10a5f5;}.cls-10{fill:#ef5e7f;}.cls-11{fill:#13a5f6;}.cls-12{fill:#ef5e80;}.cls-13{fill:#12a5f5;}.cls-14{fill:#f05f7f;}.cls-15{fill:#ef5f80;}.cls-16{fill:#13a6f6;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M351.65433,263.99074c-1.17667-2.99112-3.68268-3.54445-6.77036-2.59809-6.22232,1.907-12.56444,3.43733-18.744,5.46582a4.36763,4.36763,0,0,1-3.94538.00256,24.23135,24.23135,0,0,0-17.045-13.24143,6.63182,6.63182,0,0,1-1.62334-4.11587A203.20835,203.20835,0,0,0,293.63,210.175a6.55258,6.55258,0,0,1-.4118-4.82981,24.18277,24.18277,0,0,0,10.36841-17.45573,10.398,10.398,0,0,1,6.65365-3.12c12.60706-2.48385,24.99775-5.894,37.29437-9.61966,3.12658-.94718,5.28386-2.8986,4.2845-6.39358-1.01021-3.53343-3.82031-3.95763-7.00439-3.00972-1.55531.4631-3.11371.91582-4.66654,1.38668-11.43845,3.46771-23.05622,6.233-34.71584,8.83586a4.48427,4.48427,0,0,1-3.81581-.32995,24.01319,24.01319,0,0,0-24.8164-14.21134,4.3327,4.3327,0,0,1-1.79835-2.66919,269.11778,269.11778,0,0,1-8.09626-37.58969,5.86176,5.86176,0,0,1,.9135-4.77953,24.20774,24.20774,0,0,0,16.21616-20.69359l63.6178-16.36344c3.20973-.98323,5.08629-3.01327,4.13277-6.47989-.94729-3.44508-3.8107-3.38543-6.64869-2.95517a15.62445,15.62445,0,0,0-2.07747.63405,556.87145,556.87145,0,0,1-57.00594,13.53127,6.363,6.363,0,0,1-3.90741-.11081,24.28531,24.28531,0,0,0-14.72775-13.38988c-.15489-.05038-.31556-.08649-.47163-.13377.18674-1.23681,1.65057-10.93009,2.163-14.25676a169.80235,169.80235,0,0,1,11.50773-43.52458c1.34966-3.07637,1.32269-5.707-1.99253-7.31855-3.43731-1.67111-5.44674.24286-6.85512,3.1767-.46977.9783-.89926,1.97656-1.32654,2.97455C262.92023,29.04589,259.96955,47.435,256.23328,66.337a5.69948,5.69948,0,0,1-1.619,3.656,24.20993,24.20993,0,0,0-18.48762,19.739,3.8918,3.8918,0,0,1-3.56737,1.72441c-11.76253.73806-23.51357,1.6579-35.26874,2.51236l-5.44894.0445a7.3914,7.3914,0,0,1-7.43061-2.02586A24.251,24.251,0,0,0,167.804,75.676a4.95154,4.95154,0,0,1-.83587-4.24418c.91833-5.70884,1.58478-11.462,2.64149-17.14372a182.30892,182.30892,0,0,1,12.7652-41.88948c1.46418-3.24483.9056-5.696-2.295-7.19658-3.19263-1.49671-5.134.34027-6.51308,3.01165-.57919,1.1218-1.042,2.30451-1.53812,3.46785A191.13181,191.13181,0,0,0,157.5471,70.89717a7.5095,7.5095,0,0,1-1.51377,4.44089,24.24762,24.24762,0,0,0-17.7421,16.09738c-3.96086,2.20734-9.1891,1.00075-14.08378.91739-.90575-.01524-1.81041-.1212-2.71454-.19777a4.74684,4.74684,0,1,0-.69885,9.44545c4.69956.35228,9.38919.85415,14.09231,1.14041a4.31815,4.31815,0,0,1,2.66631.86845,24.2128,24.2128,0,0,0,20.54316,19.25946,4.28861,4.28861,0,0,1,1.29353,2.90373,211.98426,211.98426,0,0,0,8.5378,37.45657,4.14826,4.14826,0,0,1-1.76088,5.596q-.105.05469-.21289.10335a27.53994,27.53994,0,0,0-12.0265,16.81856c-.74456,3.25706-2.16689,3.94228-5.20123,3.80392-12.31942-.56168-24.61046-1.41024-36.87979-2.66272A5.03835,5.03835,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.11417-22.05063q-.212.01787-.42372.0395c-1.52522-.70847-2.17874-2.10242-2.77548-4.19646a275.46487,275.46487,0,0,1-8.0061-37.04779c-.59281-4.20005-1.27771-8.19251.65561-11.05021A23.47764,23.47764,0,0,0,84.20854,99.58876a69.41625,69.41625,0,0,1,14.61463-.4101c2.91347.108,5.0365-.88406,5.57337-3.81039.60689-3.307-1.40186-5.12873-4.39639-5.75132a50.5337,50.5337,0,0,0-8.62-1.15512c-2.18719-.06976-3.55095-.6136-4.30789-2.12862a23.15038,23.15038,0,0,0-2.067-7.85651A21.98843,21.98843,0,0,0,72.6682,66.04293a3.84,3.84,0,0,1-2.69026-4.71738q.0356-.13008.08026-.25744a209.53436,209.53436,0,0,1,5.3736-24.8806,192.10039,192.10039,0,0,1,8.72989-24.45932,4.48166,4.48166,0,0,0-2.1514-6.38972,4.41865,4.41865,0,0,0-6.41279,2.097,38.98474,38.98474,0,0,0-2.531,5.39189A205.34835,205.34835,0,0,0,60.23021,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996a19.60634,19.60634,0,0,0-12.74979,9.47381c-2.04228,3.7783-4.37143,3.35625-7.532,2.31754C28.99591,74.47117,21.928,72.20555,14.80393,70.141c-2.82094-.81741-6.03494-1.26766-7.21052,2.5635-1.15078,3.75027.91349,5.72184,4.35007,6.76244,7.95943,2.41007,15.85483,5.04458,23.87068,7.24587a4.30259,4.30259,0,0,1,3.8073,4.15058,22.64038,22.64038,0,0,0,12.69918,17.708,23.20883,23.20883,0,0,0,4.79271,2.04941,6.73938,6.73938,0,0,1,2.81552,5.92954,197.76091,197.76091,0,0,0,8.22443,41.94341,15.22267,15.22267,0,0,1,1.02772,8.899,24.27756,24.27756,0,0,0-8.084,10.32811,5.14639,5.14639,0,0,1-3.67974.13114,430.92843,430.92843,0,0,1-41.79481-11.668c-3.35445-1.133-6.6648-1.80236-8.01366,2.43657-1.30751,4.10952,1.52431,5.65351,4.98363,6.83886a414.22634,414.22634,0,0,0,41.77572,11.72239c1.798.41229,3.81024.3179,5.04781,2.07049a24.20679,24.20679,0,0,0,24.05252,21.76921c.65576,0,1.29989-.047,1.94259-.09841a3.36233,3.36233,0,0,1,2.22579,2.44912,206.562,206.562,0,0,1,10.53782,45.31006,5.12012,5.12012,0,0,1-.6629,3.97638A24.2476,24.2476,0,0,0,81.02814,276.418c-3.45562,1.9186-7.77035.48651-12.044-.35136-2.65992-.52153-5.28031-1.2413-7.93665-1.78329A350.24621,350.24621,0,0,1,14.528,261.49669c-3.01033-1.06144-5.52921-.69931-6.79469,2.33567-1.35925,3.26049.18179,5.58345,3.3124,6.89741.99923.41943,2.06476.67962,3.09466,1.02869a406.26906,406.26906,0,0,0,60.46313,15.21191A6.9087,6.9087,0,0,1,79.185,289.2067a24.20778,24.20778,0,0,0,15.743,19.64322c1.56755,1.85521,1.46169,4.17012.73308,7.2781a281.50376,281.50376,0,0,1-8.22,31.42675c-1.02183,2.84016-1.086,5.95171,2.57962,7.21967,3.89208,1.34638,5.63088-1.15265,6.82429-4.30186.31942-.84306.69636-1.66923.94992-2.53143a227.737,227.737,0,0,0,8.00716-34.28171,6.2245,6.2245,0,0,1,1.34051-3.70065,24.2176,24.2176,0,0,0,18.49073-15.01016,4.75874,4.75874,0,0,1,4.15493-1.1869,420.982,420.982,0,0,0,45.11413,1.77136,4.59227,4.59227,0,0,1,3.29986.97782,24.235,24.235,0,0,0,15.43312,16.92674,3.82055,3.82055,0,0,1,.31447,3.20485,257.64691,257.64691,0,0,1-7.73217,29.88322c-1.174,3.29924-2.08677,6.59817,2.12194,8.16308,4.07017,1.51362,5.7789-1.15481,6.98937-4.63322a195.11873,195.11873,0,0,0,7.9622-30.90684,7.204,7.204,0,0,1,2.15124-4.65585,24.07285,24.07285,0,0,0,11.58987-5.22876,15.70152,15.70152,0,0,0,2.1635-2.059,24.116,24.116,0,0,0,6.04455-11.41861c.07255-.33385.10835-.67994.1676-1.01847l13.65278-2.82958a4.46834,4.46834,0,0,0,3.85853-5.00438q-.006-.04644-.013-.09272a4.12761,4.12761,0,0,0-4.66251-4.20019c-3.26187.08292-6.52826.527-9.75574.663-2.68562.1133-3.07766.28286-4.04192-.5657a24.24144,24.24144,0,0,0-16.46193-15.38725,3.61777,3.61777,0,0,1-1.16536-2.64983,193.63589,193.63589,0,0,0-6.86056-39.42622c-.59167-1.99472.23479-2.8972,1.78066-3.9296a30.527,30.527,0,0,0,13.58876-20.117,3.45072,3.45072,0,0,1,3.50037-3.40038q.14066.002.28078.01552,16.79942-1.28842,33.54537-3.23151a6.28867,6.28867,0,0,1,4.9689.96748,24.04091,24.04091,0,0,0,24.55635,13.87875,5.34573,5.34573,0,0,1,2.13357,3.11829,266.27411,266.27411,0,0,1,9.85767,38.83033,3.01218,3.01218,0,0,1-.52293,2.73152,24.22151,24.22151,0,0,0-17.26431,20.78827c-2.63867,3.15638-6.89062,3.65106-11.5068,4.15059-1.6235.1756-3.25971.29014-4.86367.57872-3.22532.58013-5.47017,2.14613-4.91035,5.84167.5336,3.523,3.15637,4.1743,6.10437,3.81628,4.48952-.5451,8.97653-1.18163,13.41826-2.022a5.57524,5.57524,0,0,1,3.938.26069,24.27054,24.27054,0,0,0,14.81905,12.891,7.14877,7.14877,0,0,1,.59516,5.97712,238.12049,238.12049,0,0,1-10.086,42.08832,4.44267,4.44267,0,0,0,2.72436,6.18218,4.58453,4.58453,0,0,0,6.49775-2.98833c.28456-.663.58849-1.3219.81385-2.00555a221.08133,221.08133,0,0,0,9.8261-43.82481,7.13059,7.13059,0,0,1,2.0398-4.9914,24.18934,24.18934,0,0,0,18.75173-22.25721,5.35415,5.35415,0,0,1,3.66361-2.32731c6.65334-1.7242,13.26856-3.60921,19.84564-5.605a4.7324,4.7324,0,0,0,3.60011-6.70111ZM225.71081,292.28833c.03844-.54463.09177-1.08553.09177-1.64008A13.76039,13.76039,0,0,1,225.71081,292.28833Zm-47.40651-7.896s-8.08822.96263-10.8258,1.11173c-12.29753.6697-24.59541-.71636-36.90084-1.19915a4.22178,4.22178,0,0,1-3.48617-1.29353A24.20235,24.20235,0,0,0,109.16476,262.759a5.12818,5.12818,0,0,1-1.3622-3.48832,187.15808,187.15808,0,0,0-10.427-47.45728,6.66281,6.66281,0,0,1-.36546-4.95205,24.3346,24.3346,0,0,0,7.947-8.98963c3.04862-1.83413,6.97322-1.46325,11.2864-.94775,10.7693,1.287,21.65112,1.69373,32.497,2.248,2.71309.13854,4.12844.74735,4.92274,3.61942,4.22389,15.27392,16.531,24.43019,32.10926,23.57029,3.82617-.21124,4.81238.9521,5.6239,4.30574a226.41277,226.41277,0,0,1,5.58462,33.04851c.14414,1.6035.05609,2.62038-.67683,3.36913A24.227,24.227,0,0,0,178.3043,284.3923ZM255.449,183.71992a3.14547,3.14547,0,0,1-2.54645,1.17047c-10.99131,1.01438-21.96944,2.17757-32.942,3.38076-3.04691.33416-4.53852-.23387-5.71457-3.69507a30.88548,30.88548,0,0,0-31.71589-21.36,4.97567,4.97567,0,0,1-5.86316-3.89073q-.04311-.21313-.06746-.42943a320.61371,320.61371,0,0,1-7.46409-32.69386,5.10079,5.10079,0,0,1,.836-4.75022A24.24691,24.24691,0,0,0,184.54,105.36493a4.14087,4.14087,0,0,1,3.99729-1.83629,425.995,425.995,0,0,0,43.46027-2.37534,4.62159,4.62159,0,0,1,5.59834,1.51778,24.22867,24.22867,0,0,0,18.30954,14.683,4.65794,4.65794,0,0,1,1.34331,3.30776,197.61437,197.61437,0,0,0,8.54884,40.71792,5.50782,5.50782,0,0,1,.08525,4.12641,24.1639,24.1639,0,0,0-10.43393,18.21376Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M184.18975,172.92115a21.76175,21.76175,0,0,0-21.88964,21.63313q-.00136.2308.00217.46156a21.49477,21.49477,0,0,0,21.39145,21.59762q.15672.00076.31344-.00077a21.21831,21.21831,0,0,0,22.02218-20.38275q.02527-.65433.01019-1.30925A21.518,21.518,0,0,0,185.01115,172.924Q184.6005,172.91472,184.18975,172.92115Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.57824,171.69922a13.3843,13.3843,0,0,0-13.76912,12.98808q-.0095.32583-.00314.65182a13.73084,13.73084,0,0,0,27.461.2006q.00041-.05821.00035-.11644A13.42235,13.42235,0,0,0,280.15284,171.7Q279.86559,171.69345,279.57824,171.69922Zm4.87551,14.37408a4.41353,4.41353,0,0,1-5.15088,4.26714,4.4689,4.4689,0,0,1-4.63475-5.33129c.19044-3.15554,2.55157-4.39764,4.915-5.55788,3.04315,1.47812,5.25267,3.18162,4.8706,6.622Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M103.35048,272.22215a14.08492,14.08492,0,0,0-13.979,13.75893,13.77158,13.77158,0,1,0,13.97888-13.75893Zm-.05672,19.186c-3.59945.08075-5.10873-2.02166-5.14215-5.57636a4.66172,4.66172,0,0,1,5.246-5.19722,5.38978,5.38978,0,0,1-.104,10.77355Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M83.30522,173.13145a13.8328,13.8328,0,0,0-13.52663,14.10874A14.15641,14.15641,0,0,0,83.751,201.02456a13.99775,13.99775,0,0,0,13.46291-14.23074,13.72839,13.72839,0,0,0-13.79308-13.6634Zm.0485,19.34715c-3.33257-.03689-4.70667-2.13155-4.84445-5.182.02712-3.46415,1.48338-5.63615,5.1084-5.56767,3.29924.06217,4.776,2.04711,4.80961,5.23491.03612,3.42731-1.47364,5.55453-5.07355,5.51468Z\"/\u003e\u003cpath class=\"cls-4\" d=\"M76.98448,87.53946A13.86473,13.86473,0,1,0,63.07175,101.356q.05851.00021.11706-.00008A13.76552,13.76552,0,0,0,76.98453,87.6207Q76.98462,87.58006,76.98448,87.53946ZM63.12634,92.59735c-3.17493-.16676-5.14747-1.51981-5.20125-4.79859-.05889-3.58442,2.08136-5.05106,5.41763-5.08036,3.1585.08463,5.46464,1.38853,5.26094,4.71164a4.81142,4.81142,0,0,1-5.47732,5.16731Z\"/\u003e\u003cpath class=\"cls-6\" d=\"M175.48888,99.30734a13.94523,13.94523,0,1,0-27.8848-.56191q-.00626.31012.00129.62031a13.94564,13.94564,0,0,0,27.88351-.0584Zm-19.36147-.31168A5.1202,5.1202,0,0,1,161.1659,93.795q.06356-.001.12711-.00044a4.885,4.885,0,0,1,5.41839,5.36551c.00543,3.14549-1.99654,4.82309-5.27456,5.37036-2.94679-.56406-5.34043-2.25173-5.30943-5.53468Z\"/\u003e\u003cpath class=\"cls-7\" d=\"M259.53205,107.39051A13.88924,13.88924,0,1,0,246.0996,93.50293,13.8876,13.8876,0,0,0,259.53205,107.39051Zm-5.31933-14.42367a5.5124,5.5124,0,0,1,6.2155-4.70538q.05959.00825.119.01778c3.36915.3616,4.501,2.61079,4.28047,5.91809-.62722,2.80667-2.25553,5.15737-5.4666,4.57572C256.51089,98.2566,253.47311,96.62073,254.21272,92.96684Z\"/\u003e\u003cpath class=\"cls-8\" d=\"M300.48919,263.40176a13.92587,13.92587,0,1,0,13.76,14.08976q.00117-.095.001-.18994A13.96371,13.96371,0,0,0,300.48919,263.40176ZM300.38,282.68433c-3.68345.09407-5.06951-2.21448-5.03216-6.00921a4.46756,4.46756,0,0,1,5.01232-4.72649,5.37618,5.37618,0,1,1,.01984,10.73574Z\"/\u003e\u003cpath class=\"cls-5\" d=\"M187.67544,290.64344a14.42469,14.42469,0,0,0,13.98938,13.87084,14.20209,14.20209,0,0,0,13.91553-13.87812,13.71086,13.71086,0,0,0-13.8065-13.61453l-.11037.00121a13.90647,13.90647,0,0,0-13.988,13.62064Zm14.15508-5.22822a4.8759,4.8759,0,0,1,5.16359,5.18188c-.22008,3.14766-1.75061,5.55323-4.75289,5.26185-4.0514-.13964-5.94316-1.71029-5.95295-5.02441a5.12011,5.12011,0,0,1,5.54225-5.41932Z\"/\u003e\u003cpath class=\"cls-9\" d=\"M279.58305,179.45125c-2.3634,1.16024-4.72465,2.4022-4.915,5.55788a4.46894,4.46894,0,0,0,4.63475,5.33129,4.41351,4.41351,0,0,0,5.15088-4.26714C284.83578,182.63287,282.62626,180.92936,279.58305,179.45125Z\"/\u003e\u003cpath class=\"cls-10\" d=\"M103.39773,280.63461a4.6617,4.6617,0,0,0-5.246,5.19722c.03331,3.55466,1.54259,5.65707,5.14214,5.57636a5.38978,5.38978,0,0,0,.104-10.77355Z\"/\u003e\u003cpath class=\"cls-11\" d=\"M83.61766,181.72888c-3.625-.06856-5.0812,2.1035-5.1084,5.56767.13779,3.05046,1.51189,5.14513,4.84445,5.182,3.59991.03985,5.10967-2.08732,5.07358-5.51479C88.39362,183.77591,86.9169,181.791,83.61766,181.72888Z\"/\u003e\u003cpath class=\"cls-12\" d=\"M63.34271,82.7184c-3.33626.0293-5.47652,1.49594-5.41763,5.08036.05378,3.27878,2.02638,4.63174,5.20125,4.79859a4.8114,4.8114,0,0,0,5.47734-5.1673C68.80745,84.10694,66.5012,82.803,63.34271,82.7184Z\"/\u003e\u003cpath class=\"cls-13\" d=\"M166.7114,99.16006a4.88491,4.88491,0,0,0-5.41839-5.36537,5.1202,5.1202,0,0,0-5.166,5.074q-.00059.06356.00043.12711c-.031,3.28295,2.36264,4.9706,5.30943,5.53463C164.71486,103.98311,166.71685,102.30551,166.7114,99.16006Z\"/\u003e\u003cpath class=\"cls-14\" d=\"M259.3611,98.773c3.21105.58166,4.83936-1.76905,5.4666-4.57572.22056-3.3073-.91132-5.55649-4.28047-5.91809a5.51241,5.51241,0,0,0-6.31673,4.5686q-.00952.0594-.01778.119C253.47311,96.62073,256.51089,98.2566,259.3611,98.773Z\"/\u003e\u003cpath class=\"cls-15\" d=\"M300.36,271.94867a4.46736,4.46736,0,0,0-5.01232,4.72649c-.03736,3.79473,1.34871,6.10328,5.03216,6.00921a5.3762,5.3762,0,1,0-.01984-10.73574Z\"/\u003e\u003cpath class=\"cls-16\" d=\"M202.24124,295.859c3.00228.29138,4.53271-2.11419,4.75289-5.26185a4.87592,4.87592,0,0,0-5.16359-5.18188,5.12019,5.12019,0,0,0-5.54225,5.41932C196.298,294.14866,198.18979,295.71916,202.24124,295.859Z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 360 360\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;}.cls-2{fill:#fff;}.cls-3{stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}\u003c/style\u003e\u003c/defs\u003e\u003cpath class=\"cls-1\" d=\"M196.98106,263.71589a226.41737,226.41737,0,0,0-5.5846-33.04852c-.81152-3.35364-1.79773-4.517-5.6239-4.30573-15.57824.85993-27.88537-8.29632-32.10925-23.57025-.79431-2.87207-2.20966-3.48089-4.92279-3.61944-10.84589-.5542-21.72766-.96094-32.49695-2.24793-4.31323-.5155-8.23779-.88641-11.28644.94776a24.33517,24.33517,0,0,1-7.947,8.98956,6.6627,6.6627,0,0,0,.36548,4.95209,187.155,187.155,0,0,1,10.42694,47.45727,5.12822,5.12822,0,0,0,1.36224,3.48828,24.20238,24.20238,0,0,1,17.9267,20.25238,4.222,4.222,0,0,0,3.48621,1.29352c12.30542.48279,24.60327,1.86884,36.90081,1.19916,2.73761-.14911,10.82581-1.11176,10.82581-1.11176A24.22709,24.22709,0,0,1,196.30424,267.085C197.03715,266.33632,197.12522,265.31941,196.98106,263.71589Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M265.79759,161.37971a197.61367,197.61367,0,0,1-8.54889-40.71789,4.65761,4.65761,0,0,0-1.34326-3.30774,24.22885,24.22885,0,0,1-18.30957-14.683,4.62163,4.62163,0,0,0-5.59833-1.51782,425.98981,425.98981,0,0,1-43.46027,2.37537,4.14081,4.14081,0,0,0-3.99731,1.8363,24.24682,24.24682,0,0,1-14.56861,16.08685,5.10089,5.10089,0,0,0-.836,4.75025,320.60439,320.60439,0,0,0,7.46411,32.69385q.02426.21606.06744.42944a4.9757,4.9757,0,0,0,5.86316,3.89075,30.88537,30.88537,0,0,1,31.71588,21.36c1.17609,3.46124,2.66766,4.02924,5.7146,3.69507,10.97253-1.20319,21.95062-2.36633,32.942-3.38074a3.14537,3.14537,0,0,0,2.54644-1.17047h-.00006a24.16388,24.16388,0,0,1,10.4339-18.2138A5.50767,5.50767,0,0,0,265.79759,161.37971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M102.20042,280.629c-.10156.01269-.19367.048-.29285.06689.14984-.02862.298-.06262.45185-.07641C102.3065,280.62422,102.25321,280.62239,102.20042,280.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15153,285.82844l.00006.00336a10.15933,10.15933,0,0,0,.12616,1.55713,10.1523,10.1523,0,0,1-.126-1.55713Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815a5.9675,5.9675,0,0,1-2.55469-.43371A5.96733,5.96733,0,0,0,103.29374,291.40815Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.39787,280.63466a5.40143,5.40143,0,0,1,1.00067.13885,5.41235,5.41235,0,0,0-1.00092-.139,4.65217,4.65217,0,0,0-.83221-.0274,4.6532,4.6532,0,0,1,.83234.02746Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229l-.00006.00226a7.13672,7.13672,0,0,0,.09247,1.16168,7.143,7.143,0,0,1-.09241-1.16168Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.97679,293.64686c.877,1.41248,2.60565,2.12042,5.2644,2.2121a4.9608,4.9608,0,0,0,.54572.0235,4.95972,4.95972,0,0,1-.54566-.0235C199.5825,295.76716,197.8538,295.05934,196.97679,293.64686Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99522,289.9842c-.00385-.06244-.02344-.11938-.02954-.18109a4.84971,4.84971,0,0,1,.02844.79395A4.88967,4.88967,0,0,0,206.99522,289.9842Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M201.08116,285.40681c-.04761.00293-.09089.01843-.13807.02265.11255-.01.2262-.01557.34-.02039C201.21574,285.4106,201.14842,285.40266,201.08116,285.40681Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M61.10136,92.275a5.36165,5.36165,0,0,1-.93036-.37635A5.36165,5.36165,0,0,0,61.10136,92.275Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M64.21391,92.629c.11566-.00977.22186-.04492.33478-.06256-.13447.02106-.26532.05493-.40271.06445C64.16862,92.62935,64.19132,92.63093,64.21391,92.629Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M225.71079,292.28834c.03846-.54468.0918-1.08557.0918-1.64013A13.76113,13.76113,0,0,1,225.71079,292.28834Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.70616,98.08674c-.01319-.11426-.0514-.2182-.07215-.32959.02362.12671.06153.24878.07508.37836C166.70738,98.11927,166.708,98.10292,166.70616,98.08674Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.55857,286.24379c.00232-.0561-.00207-.11078-.00146-.16651-.0008.0744-.0025.14862-.00629.22235C108.5518,286.28053,108.55778,286.263,108.55857,286.24379Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M161.29569,93.79451l-.00268.00006q-.06354-.00055-.12714.00042c-.15509.00245-.30072.03687-.45208.0528a5.03926,5.03926,0,0,1,.57922-.0531Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a6.76486,6.76486,0,0,1-2.47955,1.175A6.76391,6.76391,0,0,0,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M164.94529,103.13478a4.49115,4.49115,0,0,0,1.08978-1.23761A4.49029,4.49029,0,0,1,164.94529,103.13478Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.62077,100.27144a4.76708,4.76708,0,0,1-.5857,1.62573A4.76754,4.76754,0,0,0,166.62077,100.27144Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M78.50926,187.29652v.00006c.09045,2.00189.71331,3.5921,2.07269,4.45923C79.22257,190.88868,78.59971,189.29841,78.50926,187.29652Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.54441,95.22358a10.40656,10.40656,0,0,0,.28327-1.02624,10.843,10.843,0,0,0,.01757-1.189,10.84194,10.84194,0,0,1-.01757,1.189A10.40773,10.40773,0,0,1,264.54441,95.22358Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M260.4282,88.26149c-.07141-.00989-.14191-.01148-.213-.01856.11011.01093.21979.01831.3305.03607Q260.487,88.26958,260.4282,88.26149Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.36,271.94862h.00012a4.47,4.47,0,0,0-.84809-.0249c-.00824.00055-.01574.00342-.024.004a4.477,4.477,0,0,1,.87195.02093Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.97782,282.68324c.05707-.0033.11206-.01325.16864-.01825-.06237.00549-.12371.01495-.1867.01831C300.9658,282.683,300.97178,282.68361,300.97782,282.68324Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M274.58976,186.12983c.00568.10059.034.19342.04614.292-.01751-.14234-.04162-.28309-.04522-.42823C274.59184,186.03907,274.5872,186.08442,274.58976,186.12983Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03629,277.00715c-.00347-.06054-.01391-.11877-.01934-.17871.006.06647.01593.13184.01947.19892C306.03605,277.02058,306.03666,277.014,306.03629,277.00715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.30131,190.3404l.00159.00007a4.423,4.423,0,0,0,.65387.06134c.03924.00073.0758-.0091.11486-.0094a4.40391,4.40391,0,0,1-.76879-.052Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.45371,186.07325l-.00024.00263.00031-.00257h-.00007q.0358-.32253.04169-.62512Q284.48927,185.751,284.45371,186.07325Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M352.05686,265.328a4.73274,4.73274,0,0,0-.40258-1.33722h.00006c-1.1767-2.99115-3.68268-3.54443-6.77039-2.59808-6.22229,1.907-12.56439,3.43732-18.744,5.46582a4.36777,4.36777,0,0,1-3.94537.00256,24.23138,24.23138,0,0,0-17.045-13.24145,6.63154,6.63154,0,0,1-1.62335-4.11585,203.20885,203.20885,0,0,0-9.89637-39.32879,6.55282,6.55282,0,0,1-.4118-4.82977,24.18259,24.18259,0,0,0,10.36841-17.45575,10.39818,10.39818,0,0,1,6.65368-3.12006c12.60706-2.48383,24.99775-5.894,37.29438-9.61963,3.12658-.9472,5.28387-2.89862,4.28448-6.39361-1.01019-3.53339-3.82031-3.95765-7.00439-3.00971-1.5553.46307-3.11371.91583-4.66651,1.38666-11.43847,3.46771-23.05621,6.233-34.71588,8.83587a4.48406,4.48406,0,0,1-3.81579-.32995,24.01309,24.01309,0,0,0-24.81641-14.2113,4.333,4.333,0,0,1-1.79834-2.66919,269.12413,269.12413,0,0,1-8.09625-37.58973,5.86158,5.86158,0,0,1,.91351-4.77954,24.20772,24.20772,0,0,0,16.21613-20.6936l63.61779-16.3634c3.20978-.98322,5.08631-3.01331,4.13282-6.47992-.94733-3.44507-3.81073-3.38538-6.64875-2.95514a15.62467,15.62467,0,0,0-2.07745.634,556.87465,556.87465,0,0,1-57.00592,13.53131,6.36355,6.36355,0,0,1-3.90741-.11084,24.28556,24.28556,0,0,0-14.72778-13.38989c-.15485-.05035-.31556-.08649-.47162-.13379.18677-1.23676,1.65057-10.93,2.163-14.25671a169.805,169.805,0,0,1,11.50769-43.5246c1.34967-3.07636,1.3227-5.707-1.99249-7.31854-3.43732-1.67115-5.44678.24286-6.8551,3.17669-.46979.97827-.89929,1.97657-1.3266,2.97455-7.52313,17.56653-10.47382,35.95557-14.21008,54.85767a5.69943,5.69943,0,0,1-1.619,3.656,24.20992,24.20992,0,0,0-18.48767,19.739,3.89168,3.89168,0,0,1-3.56732,1.72436c-11.76258.7381-23.51362,1.6579-35.26874,2.51239l-5.449.0445a7.39145,7.39145,0,0,1-7.4306-2.02588A24.25105,24.25105,0,0,0,167.804,75.676a4.95165,4.95165,0,0,1-.83588-4.24414c.91833-5.70887,1.58478-11.462,2.64148-17.14374a182.30756,182.30756,0,0,1,12.76526-41.88947c1.46417-3.24481.90558-5.696-2.29505-7.19659-3.19262-1.49671-5.134.34027-6.51312,3.01166-.57916,1.12176-1.042,2.3045-1.53809,3.46783a191.13224,191.13224,0,0,0-14.4815,59.21564,7.50953,7.50953,0,0,1-1.5138,4.44092,24.24752,24.24752,0,0,0-17.74206,16.09735c-3.96088,2.20733-9.18909,1.00073-14.0838.91742-.90576-.01526-1.81043-.12122-2.71454-.19782a4.74685,4.74685,0,1,0-.69885,9.4455c4.69958.35223,9.38922.85412,14.09234,1.14038a4.31776,4.31776,0,0,1,2.66626.86847,24.213,24.213,0,0,0,20.54322,19.25946,4.28893,4.28893,0,0,1,1.29351,2.90368,211.98456,211.98456,0,0,0,8.53778,37.45661,4.14826,4.14826,0,0,1-1.76086,5.596q-.105.05464-.21289.10333a27.53972,27.53972,0,0,0-12.02649,16.8186c-.74457,3.257-2.16693,3.94226-5.20123,3.8039-12.31946-.56171-24.61048-1.41022-36.87982-2.66272A5.03827,5.03827,0,0,1,107.54,184.81a24.168,24.168,0,0,0-26.1142-22.05066q-.212.01794-.4237.03955c-1.52521-.7085-2.17878-2.10242-2.77552-4.19647a275.47513,275.47513,0,0,1-8.0061-37.04779c-.59277-4.20008-1.27771-8.19251.65564-11.05023a23.47756,23.47756,0,0,0,13.3324-10.91565,69.41817,69.41817,0,0,1,14.61462-.4101c2.91345.108,5.0365-.88409,5.57336-3.81036.60694-3.307-1.40185-5.12879-4.39636-5.75134a50.5414,50.5414,0,0,0-8.62-1.15516c-2.1872-.0697-3.551-.61358-4.30786-2.1286a23.15277,23.15277,0,0,0-2.067-7.8565,21.98864,21.98864,0,0,0-12.3371-12.43378A3.83994,3.83994,0,0,1,69.978,61.32557q.03561-.13009.08026-.25744A209.53492,209.53492,0,0,1,75.4318,36.18751a192.09912,192.09912,0,0,1,8.72986-24.45935,4.48174,4.48174,0,0,0-2.15137-6.38971A4.41852,4.41852,0,0,0,75.59751,7.4355a38.98835,38.98835,0,0,0-2.531,5.39184A205.35068,205.35068,0,0,0,60.2302,60.32277C59.808,63.00483,59.12052,64.27589,56.325,64.996A19.60632,19.60632,0,0,0,43.57517,74.4698c-2.04229,3.77826-4.37139,3.3562-7.53192,2.3175-7.04736-2.31616-14.11529-4.58178-21.23932-6.64636-2.82092-.81738-6.035-1.26764-7.21051,2.56354-1.15081,3.75024.91346,5.7218,4.35,6.76239,7.95947,2.41009,15.85486,5.04462,23.87073,7.24591a4.30249,4.30249,0,0,1,3.80725,4.15057,22.64042,22.64042,0,0,0,12.69922,17.708,23.20914,23.20914,0,0,0,4.79266,2.04944,6.73915,6.73915,0,0,1,2.81555,5.9295,197.76322,197.76322,0,0,0,8.22443,41.94343,15.22256,15.22256,0,0,1,1.02771,8.89892,24.27829,24.27829,0,0,0-8.084,10.32813,5.14633,5.14633,0,0,1-3.67968.13116,430.93278,430.93278,0,0,1-41.79486-11.668C12.268,165.051,8.95762,164.3816,7.6088,168.6205c-1.30755,4.10955,1.5243,5.6535,4.98359,6.83886a414.239,414.239,0,0,0,41.77575,11.72241c1.798.4123,3.81024.31788,5.04779,2.0705a24.2068,24.2068,0,0,0,24.05255,21.76917c.65577,0,1.29987-.047,1.94257-.09839a3.36226,3.36226,0,0,1,2.22577,2.44909A206.56287,206.56287,0,0,1,98.17466,258.6822a5.12,5.12,0,0,1-.6629,3.97638A24.24763,24.24763,0,0,0,81.02812,276.418c-3.45557,1.91858-7.77033.48651-12.044-.35138-2.65991-.52154-5.28033-1.24133-7.93665-1.78332a350.23433,350.23433,0,0,1-46.5194-12.78669c-3.01038-1.0614-5.52924-.69928-6.79474,2.3357-1.35926,3.2605.18182,5.58343,3.31244,6.8974.9992.41943,2.06475.67962,3.09466,1.02868a406.26645,406.26645,0,0,0,60.46314,15.21192,6.9087,6.9087,0,0,1,4.58142,2.23633,24.20778,24.20778,0,0,0,15.743,19.64325c1.5675,1.85516,1.46167,4.1701.733,7.27807a281.491,281.491,0,0,1-8.22,31.42676c-1.02179,2.84015-1.08594,5.95172,2.57965,7.21967,3.89209,1.34637,5.63086-1.15265,6.82428-4.30188.31946-.843.69635-1.66919.95-2.53144a227.74519,227.74519,0,0,0,8.00714-34.28167,6.22469,6.22469,0,0,1,1.34052-3.70069,24.21747,24.21747,0,0,0,18.49072-15.01013,4.75862,4.75862,0,0,1,4.15491-1.18689,420.99515,420.99515,0,0,0,45.11413,1.77136,4.59224,4.59224,0,0,1,3.29987.97779,24.23513,24.23513,0,0,0,15.4331,16.92675,3.82036,3.82036,0,0,1,.31452,3.20484,257.64779,257.64779,0,0,1-7.73218,29.88324c-1.17407,3.29925-2.08679,6.59814,2.12195,8.16308,4.07013,1.51361,5.77887-1.15484,6.98938-4.63324a195.12061,195.12061,0,0,0,7.96216-30.9068,7.2042,7.2042,0,0,1,2.15124-4.65588,24.07294,24.07294,0,0,0,11.58991-5.22876,15.69932,15.69932,0,0,0,2.16345-2.059,24.11534,24.11534,0,0,0,6.04455-11.41858c.07258-.33386.10834-.67993.16761-1.01849l13.65277-2.82959a4.46836,4.46836,0,0,0,3.85858-5.0044q-.006-.04641-.013-.09271a4.12781,4.12781,0,0,0-4.66254-4.2002c-3.26184.08295-6.52826.527-9.75573.66309-2.68561.11328-3.07764.28284-4.04194-.56573a24.24117,24.24117,0,0,0-16.46191-15.38721,3.6178,3.6178,0,0,1-1.16534-2.64984,193.63839,193.63839,0,0,0-6.86054-39.42627c-.59167-1.99469.23474-2.89716,1.78064-3.92957a30.527,30.527,0,0,0,13.58875-20.117,3.45074,3.45074,0,0,1,3.50036-3.40039q.14063.002.28076.0155,16.79947-1.28843,33.54541-3.23151a6.28889,6.28889,0,0,1,4.96888.96747,24.041,24.041,0,0,0,24.55639,13.87879,5.34584,5.34584,0,0,1,2.13355,3.11828,266.27824,266.27824,0,0,1,9.85766,38.83033,3.0121,3.0121,0,0,1-.523,2.7315,24.22158,24.22158,0,0,0-17.26428,20.78827c-2.63867,3.15637-6.89062,3.65106-11.50683,4.15057-1.62348.1756-3.25971.29017-4.86365.57874-3.22534.58014-5.47016,2.14612-4.91034,5.84167.53357,3.523,3.15637,4.17432,6.10437,3.81629,4.4895-.54511,8.9765-1.18164,13.41827-2.022a5.57485,5.57485,0,0,1,3.93793.26068,24.27054,24.27054,0,0,0,14.819,12.891,7.14865,7.14865,0,0,1,.59516,5.97711,238.1196,238.1196,0,0,1-10.086,42.08832,4.44268,4.44268,0,0,0,2.72436,6.18219,4.58452,4.58452,0,0,0,6.49774-2.98834c.28455-.663.5885-1.3219.81385-2.00556a221.0801,221.0801,0,0,0,9.82611-43.82477,7.1303,7.1303,0,0,1,2.03979-4.99139A24.18933,24.18933,0,0,0,324.5449,278.6241a5.35435,5.35435,0,0,1,3.66364-2.32727c6.65332-1.72425,13.26855-3.60926,19.84564-5.605A4.73255,4.73255,0,0,0,352.05686,265.328ZM63.18882,101.356q-.0585.00027-.11706.00006A13.86474,13.86474,0,1,1,76.98448,87.53944q.00018.04065.00006.08124A13.76558,13.76558,0,0,1,63.18882,101.356ZM225.80259,290.64821c0,.55456-.05334,1.09545-.0918,1.64013A13.76113,13.76113,0,0,0,225.80259,290.64821ZM259.99467,79.61958a13.88922,13.88922,0,1,1-13.89508,13.88336A13.88751,13.88751,0,0,1,259.99467,79.61958Zm-98.09119,33.33014a13.9456,13.9456,0,0,1-14.29809-13.584q-.0076-.31008-.00128-.6203a13.94522,13.94522,0,1,1,14.29937,14.20429ZM83.751,201.02455A14.15641,14.15641,0,0,1,69.7786,187.24019a13.83283,13.83283,0,0,1,13.52662-14.10877q.05776-.00073.11554-.001a13.72836,13.72836,0,0,1,13.79309,13.66339A13.99773,13.99773,0,0,1,83.751,201.02455Zm19.28179,98.95569A13.92534,13.92534,0,0,1,89.3715,285.98109a14.08485,14.08485,0,0,1,13.97894-13.759h0a13.88087,13.88087,0,0,1-.31769,27.75812Zm75.27155-15.588s-8.0882.96265-10.82581,1.11176c-12.29754.66968-24.59539-.71637-36.90081-1.19916a4.222,4.222,0,0,1-3.48621-1.29352,24.20238,24.20238,0,0,0-17.9267-20.25238,5.12822,5.12822,0,0,1-1.36224-3.48828,187.155,187.155,0,0,0-10.42694-47.45727,6.6627,6.6627,0,0,1-.36548-4.95209,24.33517,24.33517,0,0,0,7.947-8.98956c3.04865-1.83417,6.97321-1.46326,11.28644-.94776,10.76929,1.287,21.65106,1.69373,32.497,2.24793,2.71313.13855,4.12848.74737,4.92279,3.61944,4.22388,15.27393,16.531,24.43018,32.10925,23.57025,3.82617-.21124,4.81238.95209,5.6239,4.30573a226.41737,226.41737,0,0,1,5.5846,33.04852c.14416,1.60352.05609,2.62043-.67682,3.36914A24.22709,24.22709,0,0,0,178.3043,284.39228Zm23.35919-7.36944.11035-.00122a13.71087,13.71087,0,0,1,13.80652,13.6145,14.20207,14.20207,0,0,1-13.91552,13.87811,14.42457,14.42457,0,0,1-13.98938-13.87079A13.9064,13.9064,0,0,1,201.66349,277.02284Zm4.36585-80.79291a21.21831,21.21831,0,0,1-22.02216,20.38275q-.15673.00156-.31348.0008a21.4948,21.4948,0,0,1-21.39141-21.59766q-.00357-.23072-.0022-.46155a21.76175,21.76175,0,0,1,21.88965-21.63312q.4107-.0065.82141.00281a21.518,21.518,0,0,1,21.02838,21.99671Q206.05464,195.57536,206.02934,196.22993Zm49.41955-12.51h.00006a3.14537,3.14537,0,0,1-2.54644,1.17047c-10.99134,1.01441-21.96943,2.17755-32.942,3.38074-3.04694.33417-4.53851-.23383-5.7146-3.69507a30.88537,30.88537,0,0,0-31.71588-21.36,4.9757,4.9757,0,0,1-5.86316-3.89075q-.04313-.21313-.06744-.42944a320.60439,320.60439,0,0,1-7.46411-32.69385,5.10089,5.10089,0,0,1,.836-4.75025A24.24682,24.24682,0,0,0,184.54,105.36494a4.14081,4.14081,0,0,1,3.99731-1.8363,425.98981,425.98981,0,0,0,43.46027-2.37537,4.62163,4.62163,0,0,1,5.59833,1.51782,24.22885,24.22885,0,0,0,18.30957,14.683,4.65761,4.65761,0,0,1,1.34326,3.30774,197.61367,197.61367,0,0,0,8.54889,40.71789,5.50767,5.50767,0,0,1,.0852,4.12641A24.16388,24.16388,0,0,0,255.44889,183.71992Zm23.98725,15.45A13.73075,13.73075,0,0,1,265.806,185.33912q-.00641-.32592.00311-.65179a13.38426,13.38426,0,0,1,13.76911-12.9881q.28728-.00576.57464.00073a13.4223,13.4223,0,0,1,13.11438,13.72333q.00009.05823-.0003.11646A13.73083,13.73083,0,0,1,279.43614,199.16987Zm34.813,78.32166a13.92466,13.92466,0,1,1,.001-.18994Q314.25034,277.39653,314.24919,277.49153Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.4954,185.44819a5.31552,5.31552,0,0,0-.21362-1.65313,4.75794,4.75794,0,0,0-.66754-1.36652,5.77729,5.77729,0,0,0-.66291-.78125,9.32465,9.32465,0,0,0-1.756-1.33087c-.33355-.202-.68536-.396-1.05188-.585q-.27494-.14174-.56036-.28016c-2.3634,1.16028-4.72455,2.40235-4.915,5.55793l-.00024.00177a4.46567,4.46567,0,0,0-.07593.79376c-.0011.06335-.00287.126-.00128.1889.0036.14514.02771.28589.04522.42823a4.4412,4.4412,0,0,0,.07679.486c.03265.137.07965.26868.12481.40124.04755.13959.093.27845.15381.41211s.135.2602.20844.387c.07049.12158.13916.24255.22064.35693.08319.11682.17792.22449.272.333.09461.109.18787.21722.293.31695.101.09583.212.18109.322.26746a4.39281,4.39281,0,0,0,.35474.26062c.12292.07806.25488.14313.38629.20941.12531.06317.248.128.38056.17963a4.52139,4.52139,0,0,0,.47015.14355c.13867.03723.2749.08063.41827.10443.062.01032.12433.01728.18665.025a4.45755,4.45755,0,0,0,.79724.03527h.00153a4.40391,4.40391,0,0,0,.76879.052,4.34124,4.34124,0,0,0,.47559-.03876c.13446-.01563.27-.026.40118-.05365a4.332,4.332,0,0,0,.42365-.12268c.13458-.04291.27093-.08136.40015-.13672.12823-.055.24713-.12488.36926-.19147.1264-.06891.25488-.13415.37384-.2149.11609-.0788.2204-.17127.32855-.26074s.21918-.17572.31867-.27546c.10125-.10138.18841-.21484.27966-.32611.08832-.10766.17969-.21228.25781-.32855.07794-.11609.14069-.24182.20776-.3659a4.33933,4.33933,0,0,0,.20032-.39539c.05115-.123.08643-.25317.12671-.38208a4.19281,4.19281,0,0,0,.21869-1.22412l.00024-.00263Q284.48952,185.75072,284.4954,185.44819Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.37205,190.17732a4.332,4.332,0,0,1-.42365.12268\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.7,188.44337c.07794-.11609.14069-.24182.20776-.3659\"/\u003e\u003cpath class=\"cls-3\" d=\"M277.429,190.03218c-.13257-.05164-.25525-.11646-.38056-.17963\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.16252,189.098c.10125-.10138.18841-.21484.27966-.32611\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.98539,189.11506c-.1051-.09973-.19836-.20794-.293-.31695\"/\u003e\u003cpath class=\"cls-3\" d=\"M284.23478,187.3c-.04028.12891-.07556.25909-.12671.38208\"/\u003e\u003cpath class=\"cls-3\" d=\"M276.66215,189.64314a4.39281,4.39281,0,0,1-.35474-.26062\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.84385,189.37349c-.10815.08947-.21246.18194-.32855.26074\"/\u003e\u003cpath class=\"cls-3\" d=\"M280.07163,190.39241a4.34124,4.34124,0,0,0,.47559-.03876\"/\u003e\u003cpath class=\"cls-2\" d=\"M278.18217,190.2621c.04468.00885.09033.01056.13525.01806-.14337-.0238-.2796-.0672-.41827-.10443C277.99516,190.20149,278.08323,190.2425,278.18217,190.2621Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.14146,189.84913c-.12213.06659-.241.13648-.36926.19147\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.39237,186.72718a4.421,4.421,0,0,0,.0611-.6513,4.41368,4.41368,0,0,1-.09155.7619C284.36942,186.79963,284.38584,186.7657,284.39237,186.72718Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.99131,187.7212c-.06085-.13366-.10626-.27252-.15381-.41211\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.6359,186.42183a4.4412,4.4412,0,0,0,.07679.486\"/\u003e\u003cpath class=\"cls-3\" d=\"M281.19535,180.31642a9.32465,9.32465,0,0,1,1.756,1.33087\"/\u003e\u003cpath class=\"cls-3\" d=\"M274.59068,185.9936c-.00159-.06292.00018-.12555.00128-.1889\"/\u003e\u003cpath class=\"cls-3\" d=\"M275.42039,188.46516c-.08148-.11438-.15015-.23535-.22064-.35693\"/\u003e\u003cpath class=\"cls-3\" d=\"M283.61424,182.42854a4.75794,4.75794,0,0,1,.66754,1.36652\"/\u003e\u003cpath class=\"cls-2\" d=\"M284.28178,183.79506a5.31552,5.31552,0,0,1,.21362,1.65313A5.31552,5.31552,0,0,0,284.28178,183.79506Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M282.95133,181.64729a5.77729,5.77729,0,0,1,.66291.78125\"/\u003e\u003cpath class=\"cls-2\" d=\"M279.58311,179.45124h-.00006c-2.36341,1.16028-4.72467,2.40223-4.915,5.55787l-.00018.00183.00024-.00177C274.85856,181.85359,277.21971,180.61152,279.58311,179.45124Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M279.30131,190.3404a4.45755,4.45755,0,0,1-.79724-.03527\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677a5.35431,5.35431,0,0,0-.27148-.84576c-.01739-.04181-.03509-.08283-.05347-.12409a5.37077,5.37077,0,0,0-.41626-.76391c-.02472-.03772-.05029-.074-.07592-.111a5.416,5.416,0,0,0-.54847-.67285c-.02874-.0299-.05865-.05774-.08807-.087a5.41085,5.41085,0,0,0-.67242-.57007c-.02845-.02026-.05805-.03809-.08686-.0578a5.37445,5.37445,0,0,0-.78949-.45007c-.02392-.011-.04876-.01954-.07281-.03016a5.35041,5.35041,0,0,0-.89838-.30761c-.01556-.00379-.03174-.00562-.04736-.00928a5.40143,5.40143,0,0,0-1.00067-.13885l-.00012-.00007a4.6532,4.6532,0,0,0-.83234-.02746c-.06915.00311-.13751.00616-.206.01233-.15381.01379-.302.04779-.45185.07641a4.63966,4.63966,0,0,0-.49591.11328c-.141.04352-.27594.10035-.41144.15668-.14117.05866-.28119.11615-.4154.18805-.13562.07269-.26331.15759-.39087.2431-.12109.08118-.241.16132-.354.25342-.11682.09516-.22406.20105-.33129.30713-.10627.10523-.21088.20978-.307.32507-.09363.11243-.17627.23383-.25934.35517-.08594.12567-.17065.25024-.24438.38476-.07343.1341-.13379.27619-.19416.41846-.0567.13348-.11413.265-.15857.40509a4.71343,4.71343,0,0,0-.119.49939c-.02967.14813-.0647.29443-.07984.44659-.00689.0694-.01056.139-.0144.20862a4.64155,4.64155,0,0,0,.01953.82776l.00018.00336a10.1523,10.1523,0,0,0,.126,1.55713,5.87486,5.87486,0,0,0,.62524,1.90014,3.95737,3.95737,0,0,0,.72809.95209,3.71143,3.71143,0,0,0,.46271.37537,3.9539,3.9539,0,0,0,.64526.35791,5.9675,5.9675,0,0,0,2.55469.43371l-.00012-.00006a5.40357,5.40357,0,0,0,1.00391-.11957c.01532-.00329.03131-.00476.04657-.00817a5.34,5.34,0,0,0,.90588-.29078c.0235-.00982.048-.01776.07135-.028a5.36087,5.36087,0,0,0,.801-.43634c.0279-.01831.05683-.035.08435-.05383a5.39282,5.39282,0,0,0,.68683-.55982c.02869-.0274.05823-.05395.08625-.082a5.40862,5.40862,0,0,0,.56506-.66668c.02478-.03443.04993-.06855.074-.10364a5.38526,5.38526,0,0,0,.43463-.76245q.02683-.05731.05237-.11524a5.34427,5.34427,0,0,0,.29041-.84808c.00982-.03912.01861-.07861.02759-.1181a5.36537,5.36537,0,0,0,.12707-.91584c.00379-.07373.00549-.14795.00629-.22235.00085-.07953.00043-.15863-.00214-.23736A5.4053,5.4053,0,0,0,108.44657,284.92982Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.132,285.00068a4.64155,4.64155,0,0,0,.01953.82776\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.05338,288.29689a5.38526,5.38526,0,0,1-.43463.76245\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.39616,287.33357a5.34427,5.34427,0,0,1-.29041.84808\"/\u003e\u003cpath class=\"cls-2\" d=\"M98.15733,284.63466c-.007.05224-.00568.105-.01093.1574.01514-.15216.05017-.29846.07984-.44659C98.20664,284.44343,98.17082,284.53425,98.15733,284.63466Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.25,290.98957a5.34,5.34,0,0,1-.90588.29078\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.89347,289.91163a5.39282,5.39282,0,0,1-.68683.55982\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.54478,289.163a5.40862,5.40862,0,0,1-.56506.66668\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.55082,286.29963a5.36537,5.36537,0,0,1-.12707.91584\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.12229,290.52528a5.36087,5.36087,0,0,1-.801.43634\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.05393,282.28547c-.02874-.0299-.05865-.05774-.08807-.087\"/\u003e\u003cpath class=\"cls-3\" d=\"M106.29344,281.62843c-.02845-.02026-.05805-.03809-.08686-.0578\"/\u003e\u003cpath class=\"cls-3\" d=\"M104.39854,280.77351c.01562.00366.0318.00549.04736.00928\"/\u003e\u003cpath class=\"cls-3\" d=\"M102.56541,280.60713c-.06915.00311-.13751.00616-.206.01233\"/\u003e\u003cpath class=\"cls-3\" d=\"M105.34428,281.0904c.02405.01062.04889.01917.07281.03016\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.14805,283.95729c-.01739-.04181-.03509-.08283-.05347-.12409\"/\u003e\u003cpath class=\"cls-3\" d=\"M108.44657,284.92982c-.00872-.04248-.01733-.08465-.027-.12677\"/\u003e\u003cpath class=\"cls-2\" d=\"M108.555,285.83992c.00257.07873.003.15783.00214.23736.00061-.05951.00635-.11773.005-.17767C108.56169,285.87916,108.55564,285.8603,108.555,285.83992Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.34525,283.84608c.04444-.14007.10187-.27161.15857-.40509\"/\u003e\u003cpath class=\"cls-2\" d=\"M103.29374,291.40815h.00012a5.41019,5.41019,0,0,0,1.00367-.11963,5.40357,5.40357,0,0,1-1.00391.11957Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M107.67832,283.06929c-.02472-.03772-.05029-.074-.07592-.111\"/\u003e\u003cpath class=\"cls-3\" d=\"M98.94236,282.63777c-.08594.12567-.17065.25024-.24438.38476\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.83994,281.6504c.113-.0921.23292-.17224.354-.25342\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.90757,280.69587a4.63966,4.63966,0,0,0-.49591.11328\"/\u003e\u003cpath class=\"cls-3\" d=\"M101.00022,280.96583c-.14117.05866-.28119.11615-.4154.18805\"/\u003e\u003cpath class=\"cls-3\" d=\"M99.50865,281.95753c-.10627.10523-.21088.20978-.307.32507\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971c-.03955-.08624-.06579-.18463-.10974-.26679a4.15369,4.15369,0,0,0-.30328-.48468,4.54811,4.54811,0,0,0-3.83973-1.70935,6.13939,6.13939,0,0,0-2.32366.35389,3.809,3.809,0,0,0-1.9314,1.63775,5.72854,5.72854,0,0,0-.73041,2.1181,9.94971,9.94971,0,0,0-.12292,1.45789c.09045,2.00189.71331,3.59216,2.07269,4.45929a4.50593,4.50593,0,0,0,1.61249.61462,6.70644,6.70644,0,0,0,1.1593.10816v-.00012a4.6766,4.6766,0,0,0,4.00879-1.61689,4.13755,4.13755,0,0,0,.31909-.47869,5.58194,5.58194,0,0,0,.64471-1.98517,9.22473,9.22473,0,0,0,.101-1.4339,7.99889,7.99889,0,0,0-.14978-1.50012A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M83.35374,192.47847v.00012a4.67641,4.67641,0,0,0,4.00879-1.617A4.6766,4.6766,0,0,1,83.35374,192.47847Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.68162,190.38289a4.13755,4.13755,0,0,1-.31909.47869\"/\u003e\u003cpath class=\"cls-3\" d=\"M81.294,182.08278a6.13939,6.13939,0,0,1,2.32366-.35389\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.32633,188.39772a9.22473,9.22473,0,0,0,.101-1.4339\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.45738,183.43824a4.54771,4.54771,0,0,0-3.83973-1.70935A4.54811,4.54811,0,0,1,87.45738,183.43824Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M87.45738,183.43824a4.15369,4.15369,0,0,1,.30328.48468\"/\u003e\u003cpath class=\"cls-3\" d=\"M79.36259,183.72053a3.809,3.809,0,0,1,1.9314-1.63775\"/\u003e\u003cpath class=\"cls-3\" d=\"M88.42729,186.96382a7.99889,7.99889,0,0,0-.14978-1.50012\"/\u003e\u003cpath class=\"cls-2\" d=\"M87.8704,184.18971a5.82268,5.82268,0,0,1,.40711,1.274A5.82268,5.82268,0,0,0,87.8704,184.18971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M78.50926,187.29652a9.94971,9.94971,0,0,1,.12292-1.45789\"/\u003e\u003cpath class=\"cls-2\" d=\"M66.86,83.59663a4.82312,4.82312,0,0,0-.85651-.41724,6.54631,6.54631,0,0,0-.985-.27954,8.97209,8.97209,0,0,0-1.094-.15112q-.28556-.02251-.58179-.03033a9.77266,9.77266,0,0,0-1.19311.07971,5.99614,5.99614,0,0,0-2.00275.59552c-1.4364.75189-2.25861,2.16491-2.2218,4.40515a5.01856,5.01856,0,0,0,.83221,2.91516,3.71806,3.71806,0,0,0,.77069.79071,4.29255,4.29255,0,0,0,.643.394,5.36165,5.36165,0,0,0,.93036.37635,8.756,8.756,0,0,0,2.025.32232,4.81227,4.81227,0,0,0,.88635.03723c.0445-.00183.08912-.00061.13331-.00366.13739-.00952.26824-.04339.40271-.06445a4.81144,4.81144,0,0,0,.55609-.10388c.14459-.04059.28033-.10181.41961-.1554.15064-.058.30341-.10882.44684-.18121.1424-.072.27307-.163.40741-.24835.12659-.08057.25635-.15448.37488-.2464.12231-.09485.23035-.20618.34314-.31238s.22912-.207.33142-.324c.09814-.11212.17987-.23822.26752-.35955a4.721,4.721,0,0,0,.27215-.393c.07959-.13733.13965-.28711.20575-.43323.06195-.13684.13129-.26812.18061-.412a4.88384,4.88384,0,0,0,.13568-.54761c.029-.13355.07049-.26264.08807-.39972.00562-.04382.007-.08826.01135-.13239a4.8041,4.8041,0,0,0,.01447-.88726,5.754,5.754,0,0,0-.038-1.15308A3.5953,3.5953,0,0,0,66.86,83.59663Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.60368,87.43007a4.8041,4.8041,0,0,1-.01447.88726\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.35411,89.397c-.04932.14392-.11866.2752-.18061.412\"/\u003e\u003cpath class=\"cls-3\" d=\"M64.146,92.63093c-.04419.003-.08881.00183-.13331.00366\"/\u003e\u003cpath class=\"cls-2\" d=\"M68.572,88.51765c.00324-.02252.00293-.04535.00586-.06793-.01758.13708-.05908.26617-.08807.39972C68.51408,88.73732,68.55546,88.63295,68.572,88.51765Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.10478,92.4626a4.81144,4.81144,0,0,1-.55609.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M62.14964,82.79811a5.99614,5.99614,0,0,0-2.00275.59552\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.37864,91.87764c.12659-.08057.25635-.15448.37488-.2464\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.00352,83.17939a4.82312,4.82312,0,0,1,.85651.41724\"/\u003e\u003cpath class=\"cls-3\" d=\"M65.97123,92.126c-.14343.07239-.2962.12323-.44684.18121\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.09666,91.31886c.11279-.10626.22912-.207.33142-.324\"/\u003e\u003cpath class=\"cls-2\" d=\"M63.34269,82.7184a9.77166,9.77166,0,0,0-1.193.07971,9.77266,9.77266,0,0,1,1.19311-.07971Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M68.56565,86.277a5.754,5.754,0,0,1,.038,1.15308\"/\u003e\u003cpath class=\"cls-3\" d=\"M66.86,83.59663A3.5953,3.5953,0,0,1,68.56565,86.277\"/\u003e\u003cpath class=\"cls-3\" d=\"M67.96775,90.24232a4.721,4.721,0,0,1-.27215.393\"/\u003e\u003cpath class=\"cls-2\" d=\"M166.634,97.75715a4.89052,4.89052,0,0,0-.12774-.58386c-.04621-.14539-.11445-.28033-.17365-.41986a2.911,2.911,0,0,0-.46918-.85773c-.085-.12378-.16211-.25207-.258-.36743-.10126-.12183-.21991-.22748-.33264-.33911-.11084-.10974-.21509-.22455-.33625-.32349-.118-.09643-.25073-.17456-.37793-.25988a4.79316,4.79316,0,0,0-.40436-.262,4.90821,4.90821,0,0,0-.45953-.19763c-.13721-.05615-.26831-.12176-.41193-.16565a4.96708,4.96708,0,0,0-.59588-.12427c-.12335-.02148-.24225-.05737-.36817-.06927-.0379-.0036-.07592-.00305-.11383-.00574a4.886,4.886,0,0,0-.90918.01325l-.00268.00018a5.03926,5.03926,0,0,0-.57922.0531,5.17539,5.17539,0,0,0-.51557.06024,4.99341,4.99341,0,0,0-.48254.14508c-.15973.05036-.323.0907-.47559.15589-.15527.06634-.29718.15515-.44409.236-.142.07806-.2887.14709-.42212.23785-.13806.094-.26.20764-.38806.31433-.1239.10334-.25366.19861-.36731.313-.11566.11646-.21253.2497-.31665.37677-.1037.12659-.21405.24616-.30548.38245-.09125.136-.16095.28625-.23908.43115-.07849.14563-.16491.28534-.22931.439-.06475.15455-.10492.32044-.15448.48224-.0487.15876-.10675.31263-.14.47766a5.21528,5.21528,0,0,0-.05743.52259,5.029,5.029,0,0,0-.04865.57373v.00006a5.53006,5.53006,0,0,0,.28644,1.869,4.70455,4.70455,0,0,0,1.20672,1.87536,5.37684,5.37684,0,0,0,.42292.3653,7.94346,7.94346,0,0,0,3.39337,1.425q.53778-.08982,1.02887-.22058a6.76486,6.76486,0,0,0,2.47955-1.175,4.49029,4.49029,0,0,0,1.08978-1.23761,4.76708,4.76708,0,0,0,.5857-1.62573,6.40739,6.40739,0,0,0,.09063-1.11139,4.88251,4.88251,0,0,0,.00428-.91425c-.003-.03674-.00275-.07379-.00659-.11029C166.69554,98.00593,166.65763,97.88386,166.634,97.75715Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M162.36613,93.78938c-.01575-.00165-.03168-.00086-.04743-.00238.12592.0119.24482.04779.36817.06927C162.57847,93.83741,162.47721,93.8011,162.36613,93.78938Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M161.29569,93.79451a4.886,4.886,0,0,1,.90918-.01325\"/\u003e\u003cpath class=\"cls-3\" d=\"M160.19822,93.908a5.17539,5.17539,0,0,1,.51557-.06024\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.30186,95.6869c-.1037.12659-.21405.24616-.30548.38245\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.7573,96.5005c-.07849.14563-.16491.28534-.22931.439\"/\u003e\u003cpath class=\"cls-3\" d=\"M163.28275,93.98054c.14362.04389.27472.1095.41193.16565\"/\u003e\u003cpath class=\"cls-3\" d=\"M156.2335,97.89936c.03326-.165.09131-.3189.14-.47766\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.37388,94.68281c.13342-.09076.28009-.15979.42212-.23785\"/\u003e\u003cpath class=\"cls-3\" d=\"M157.98582,94.99714c-.1239.10334-.25366.19861-.36731.313\"/\u003e\u003cpath class=\"cls-3\" d=\"M159.24009,94.209c.15259-.06519.31586-.10553.47559-.15589\"/\u003e\u003cpath class=\"cls-2\" d=\"M157.62058,102.74012a4.70455,4.70455,0,0,1-1.20672-1.87536A4.70455,4.70455,0,0,0,157.62058,102.74012Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M156.12742,98.99568a5.029,5.029,0,0,1,.04865-.57373c-.01453.14959-.04767.29358-.04908.44671q-.00063.06363.00043.12714a5.52942,5.52942,0,0,0,.28644,1.869,5.53006,5.53006,0,0,1-.28644-1.869Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M158.0435,103.10542a5.37684,5.37684,0,0,1-.42292-.3653\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.13468,96.30543a4.88835,4.88835,0,0,1,.19794.448\"/\u003e\u003cpath class=\"cls-3\" d=\"M165.86344,95.8957c-.085-.12378-.16211-.25207-.258-.36743\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.50627,97.17329a4.89052,4.89052,0,0,1,.12774.58386\"/\u003e\u003cpath class=\"cls-3\" d=\"M166.71568,98.2458c-.003-.03674-.00275-.07379-.00659-.11029\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.15421,94.34382a4.79316,4.79316,0,0,1,.40436.262\"/\u003e\u003cpath class=\"cls-3\" d=\"M164.9365,94.86567c.12116.09894.22541.21375.33625.32349\"/\u003e\u003cpath class=\"cls-2\" d=\"M259.36112,98.773a4.31339,4.31339,0,0,0,2.5644-.23822,3.75853,3.75853,0,0,0,.79-.47479,5.19767,5.19767,0,0,0,1.445-1.8819,8.23306,8.23306,0,0,0,.38391-.95453,10.40773,10.40773,0,0,0,.28327-1.0263,10.84194,10.84194,0,0,0,.01757-1.189,6.492,6.492,0,0,0-.38665-2.04156,3.84062,3.84062,0,0,0-1.79016-2.07538,5.673,5.673,0,0,0-2.12122-.61212l-.00153-.00025c-.11071-.01776-.22039-.02514-.3305-.03607-.09772-.00976-.19537-.021-.29248-.02551-.08856-.00409-.17615-.00214-.2641-.002-.09638.00013-.19287-.00115-.28839.004-.08875.00476-.17621.01544-.264.02448-.09271.00958-.18555.01764-.277.0318-.08862.01373-.17554.033-.26288.051-.08838.01813-.177.03485-.264.05725-.08729.02252-.17261.05042-.25837.077-.08429.02618-.16888.0509-.25158.081-.08478.03089-.16718.067-.25013.10187-.08044.03388-.16131.06628-.23992.10388-.08075.03858-.15888.08209-.23755.12451-.07691.04145-.15436.08161-.22919.12659-.07562.04553-.14826.0957-.22162.14472s-.14764.0971-.21869.14965c-.06982.0517-.13617.10767-.20349.16254-.06958.0567-.13971.1123-.20648.17242-.06409.05762-.12445.11933-.18585.18-.06421.06347-.12921.126-.19037.19262-.05853.06385-.113.13147-.16858.19806-.058.06952-.1167.138-.17133.21045-.05249.0697-.10064.143-.15.2154-.051.07489-.10291.14868-.15033.22631-.04614.0755-.08746.15448-.13013.23255-.04339.07959-.088.15814-.12762.24023s-.07391.16724-.10956.25159c-.03491.08264-.071.16431-.10211.24914-.03223.08832-.05878.17957-.08673.27015-.02643.08581-.05438.17059-.07678.25836-.02344.09179-.04071.18628-.05964.28015-.02227.11078-.04779.22028-.06347.33374a5.72957,5.72957,0,0,0-.0954.66162,4.80924,4.80924,0,0,0-.01263.61572,4.02893,4.02893,0,0,0,.19964,1.0987C254.98026,97.36866,257.22349,98.38569,259.36112,98.773Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.39518,89.29316c.07105-.05255.1452-.10052.21869-.14965\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.98521,89.62812c.06677-.06012.1369-.11572.20648-.17242\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.96879,90.851c.04742-.07763.0993-.15142.15033-.22631\"/\u003e\u003cpath class=\"cls-2\" d=\"M262.66844,88.89137a5.67189,5.67189,0,0,0-2.12122-.61218l-.00153-.00019.00153.00025A5.673,5.673,0,0,1,262.66844,88.89137Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.26908,90.40925c.05463-.07245.11335-.14093.17133-.21045\"/\u003e\u003cpath class=\"cls-3\" d=\"M255.609,90.00074c.06116-.06665.12616-.12915.19037-.19262\"/\u003e\u003cpath class=\"cls-2\" d=\"M264.4586,90.96675a6.492,6.492,0,0,1,.38665,2.04156A6.49168,6.49168,0,0,0,264.4586,90.96675Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.30223,88.74769c.07861-.0376.15948-.07.23992-.10388\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.33586,92.353c.0224-.08777.05035-.17255.07678-.25836\"/\u003e\u003cpath class=\"cls-3\" d=\"M257.79228,88.54194c.0827-.03009.16729-.05481.25158-.081\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.82914,88.27571c.09149-.01416.18433-.02222.277-.0318\"/\u003e\u003cpath class=\"cls-3\" d=\"M258.30223,88.38392c.087-.0224.17565-.03912.264-.05725\"/\u003e\u003cpath class=\"cls-3\" d=\"M256.83549,88.99879c.07483-.045.15228-.08514.22919-.12659\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.711,91.32374c.03967-.08209.08423-.16064.12762-.24023\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.92271,88.21742c.09711.00452.19476.01575.29248.02551\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.49937,91.82447c.03107-.08483.0672-.1665.10211-.24914\"/\u003e\u003cpath class=\"cls-3\" d=\"M259.37022,88.21943c.09552-.00518.192-.0039.28839-.004\"/\u003e\u003cpath class=\"cls-2\" d=\"M254.27622,92.63313c-.01446.0719-.034.1416-.04571.21466q-.00952.05942-.01776.119a5.73054,5.73054,0,0,0-.0954.66168,5.72957,5.72957,0,0,1,.0954-.66162C254.22843,92.85341,254.254,92.74391,254.27622,92.63313Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M254.10472,94.24421a4.80924,4.80924,0,0,1,.01263-.61572\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.017,276.82844c-.01044-.116-.01972-.23218-.03748-.34607-.01062-.06787-.02716-.13366-.04028-.20074-.02106-.10767-.04059-.21582-.06806-.32123-.0205-.07874-.04718-.155-.07116-.23242-.02771-.08948-.05316-.17987-.08539-.26734-.03259-.08856-.07153-.174-.10858-.26031-.03125-.07269-.05982-.14661-.09412-.21759-.04419-.09155-.09454-.17938-.14368-.268-.03466-.06244-.06671-.12616-.10376-.18707-.053-.08716-.11175-.17035-.16955-.25421-.04028-.05853-.07843-.11859-.121-.17548-.05835-.07794-.122-.15161-.18445-.22625-.04865-.05823-.0954-.11792-.14649-.174-.06048-.06646-.12567-.12835-.18939-.19171-.0592-.0589-.11676-.11914-.17871-.17529-.06091-.05511-.12591-.10577-.18933-.15814-.07025-.058-.13922-.11731-.21246-.17182-.06165-.04583-.1269-.087-.19055-.13031-.07935-.05389-.15754-.10907-.23987-.15875-.06592-.03979-.13507-.07452-.20282-.11151-.084-.0459-.16706-.09338-.25385-.13489-.07525-.036-.15368-.06628-.23089-.09887-.0824-.03473-.16346-.07166-.24793-.10236-.09186-.03339-.18677-.06012-.28094-.08856-.07318-.02216-.1449-.04724-.21942-.06629-.11023-.02826-.22358-.04876-.33661-.07006-.062-.01172-.12275-.02692-.18555-.0365-.11859-.01807-.24-.02753-.36115-.03778-.0614-.00513-.1217-.01423-.18353-.01728a5.35724,5.35724,0,0,0-.57977.001H300.36v.00006a4.477,4.477,0,0,0-.87195-.02093,4.38634,4.38634,0,0,0-.62152.10424c-.0857.0185-.17572.02295-.25977.04639a4.40233,4.40233,0,0,0-.48419.186c-.11.04511-.22638.07636-.332.12989-.09857.04992-.18476.11926-.27918.17621a2.76139,2.76139,0,0,0-.82538.64032c-.07891.07757-.16784.1441-.241.22747a4.4832,4.4832,0,0,0-.36029.50037c-.0445.06757-.1.1264-.14087.19659-.0644.11054-.10681.23468-.16181.35138a4.36968,4.36968,0,0,0-.20172.44526c-.0296.08654-.04046.18151-.06488.27063a4.427,4.427,0,0,0-.13727.6,4.48025,4.48025,0,0,0-.03033.87262c-.03736,3.79474,1.34875,6.10327,5.03216,6.00922a5.433,5.433,0,0,0,.57978-.001c.063-.00336.12433-.01282.1867-.01831.11975-.01056.23957-.02039.35706-.0387.065-.01019.12823-.02606.1925-.03857.11048-.02142.2212-.04169.32923-.06983.07709-.02008.15179-.04626.22754-.06964.091-.02813.18286-.05407.27179-.08679.08776-.03235.17236-.07092.25793-.1076.07349-.0315.14813-.06049.21991-.09516.091-.04394.17835-.094.26648-.14288.06287-.03485.12708-.0672.18835-.10443.08716-.053.17029-.11188.25422-.16962.05847-.04028.11847-.07825.17529-.12079.07794-.05835.15161-.122.22632-.18444.05822-.04871.118-.09546.17413-.14661.06647-.06049.1283-.12561.19165-.18933.05884-.05921.11914-.11676.17523-.17865.05561-.0614.10669-.127.15949-.191.05743-.06958.11621-.13776.17016-.21027.04663-.06268.08857-.129.13251-.19385.05316-.0783.10761-.15545.15668-.23669.04065-.06732.07617-.13806.114-.20727.045-.08252.09155-.16382.13226-.249.037-.07727.06824-.15771.10157-.23706.03381-.08038.06982-.15942.09979-.24182.03424-.09418.06189-.19165.09094-.28833.0213-.07068.04553-.13995.064-.21191.029-.11335.05029-.22968.072-.34589.011-.0589.02551-.11645.0346-.17609.01868-.12249.02869-.248.03907-.37329.00476-.05755.01336-.11407.01623-.17218.005-.09851.00135-.19519.001-.29266-.00031-.08917.00275-.17908-.00189-.26733C306.03288,276.96028,306.02293,276.89491,306.017,276.82844Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.27293,280.09016c-.04907.08124-.10352.15839-.15668.23669\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.98374,280.5207c-.05395.07251-.11273.14069-.17016.21027\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51914,279.63392c-.04071.08515-.08728.16645-.13226.249\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.51188,274.98274c.0343.071.06287.1449.09412.21759\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.97392,274.098c.04254.05689.08069.117.121.17548\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.88676,281.621c-.05682.04254-.11682.08051-.17529.12079\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.45725,281.91139c-.06127.03723-.12548.06958-.18835.10443\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.7205,279.155c-.03.0824-.066.16144-.09979.24182\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.26444,274.52766c.03705.06091.0691.12463.10376.18707\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.65409,280.922c-.05609.06189-.11639.11944-.17523.17865\"/\u003e\u003cpath class=\"cls-3\" d=\"M306.03831,277.29469c-.00031-.08917.00275-.17908-.00189-.26733\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.97947,276.48237c.01776.11389.027.23011.03748.34607\"/\u003e\u003cpath class=\"cls-2\" d=\"M295.34782,276.67512a4.48025,4.48025,0,0,1,.03033-.87262c-.0011.00849-.00457.01605-.00561.02454a4.46492,4.46492,0,0,0-.02484.84808c-.03736,3.79474,1.34869,6.10333,5.03216,6.00922H300.38C296.69657,282.77839,295.31046,280.46986,295.34782,276.67512Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.38,282.68434a5.3574,5.3574,0,0,0,.57978-.001,5.433,5.433,0,0,1-.57978.001Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.71458,275.46064c.03223.08747.05768.17786.08539.26734\"/\u003e\u003cpath class=\"cls-2\" d=\"M306.03727,277.60493c.00031-.00592-.00024-.01166.00006-.01758-.00287.05811-.01147.11463-.01623.17218C306.02537,277.70765,306.03446,277.6573,306.03727,277.60493Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87541,278.6548c-.01844.072-.04267.14123-.064.21191\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.982,278.13282c-.00909.05964-.02362.11719-.0346.17609\"/\u003e\u003cpath class=\"cls-3\" d=\"M305.87113,275.9604c.02747.10541.047.21356.06806.32123\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.28721,281.28993c-.05609.05115-.11591.0979-.17413.14661\"/\u003e\u003cpath class=\"cls-3\" d=\"M297.51139,272.57045c.09442-.05695.18061-.12629.27918-.17621\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.86656,272.032a4.38634,4.38634,0,0,1,.62152-.10424\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.44267,272.71168c.08233.04968.16052.10486.23987.15875\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.87309,273.00074c.07324.05451.14221.11377.21246.17182\"/\u003e\u003cpath class=\"cls-3\" d=\"M298.1226,272.26435a4.40233,4.40233,0,0,1,.48419-.186\"/\u003e\u003cpath class=\"cls-2\" d=\"M300.95786,271.94752c-.006-.0003-.0119.00037-.01788.00006.06183.003.12213.01215.18353.01728C301.06791,271.96016,301.014,271.95051,300.95786,271.94752Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.00682,272.1092c.07452.019.14624.04413.21942.06629\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.50718,272.26405c.08447.0307.16553.06763.24793.10236\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.986,272.46528c.08679.04151.1698.089.25385.13489\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.48466,272.00264c.0628.00958.12353.02478.18555.0365\"/\u003e\u003cpath class=\"cls-3\" d=\"M303.00242,282.1587c-.07178.03467-.14642.06366-.21991.09516\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.02525,282.51789c-.108.02814-.21875.04841-.32923.06983\"/\u003e\u003cpath class=\"cls-3\" d=\"M302.52458,282.36146c-.08893.03272-.18079.05866-.27179.08679\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.686,273.21077a4.48232,4.48232,0,0,1,.37909-.35718\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.643,273.6977c.05109.0561.09784.11579.14649.174\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.51542,275.20247c.02442-.08912.03528-.18409.06488-.27063\"/\u003e\u003cpath class=\"cls-3\" d=\"M304.27488,273.3307c.062.05615.11951.11639.17871.17529\"/\u003e\u003cpath class=\"cls-3\" d=\"M295.782,274.48658c.055-.1167.09741-.24084.16181-.35138\"/\u003e\u003cpath class=\"cls-3\" d=\"M301.50352,282.62629c-.11749.01831-.23731.02814-.35706.0387\"/\u003e\u003cpath class=\"cls-3\" d=\"M296.0847,273.93861a4.4832,4.4832,0,0,1,.36029-.50037\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83455a7.143,7.143,0,0,0,.09241,1.16168,4.509,4.509,0,0,0,.59607,1.65063c.877,1.41248,2.60571,2.1203,5.26446,2.2121a4.95972,4.95972,0,0,0,.54566.0235,4.06042,4.06042,0,0,0,.98895-.13117,3.50544,3.50544,0,0,0,1.23053-.59924,3.8743,3.8743,0,0,0,.6546-.6344,4.77817,4.77817,0,0,0,.52417-.79559,6.94071,6.94071,0,0,0,.64319-1.88587c.01221-.06128.02411-.12274.03515-.18493a9.96976,9.96976,0,0,0,.12507-.9975c.00146-.01917.00421-.03748.00555-.0567a4.84971,4.84971,0,0,0-.02844-.79395,4.78269,4.78269,0,0,0-.08295-.50873c-.03119-.15033-.0625-.30041-.1073-.44555a4.80075,4.80075,0,0,0-.17181-.45362c-.0611-.1444-.12232-.28863-.1966-.42572-.07409-.13684-.15912-.2644-.2456-.39312-.088-.13074-.17621-.26105-.27613-.38257-.09887-.1203-.20727-.22955-.3172-.33985-.10919-.10968-.21868-.21868-.338-.31768-.12146-.10077-.251-.189-.38214-.2779-.12769-.08648-.25549-.17224-.39166-.24664-.13721-.075-.28046-.13654-.4256-.19836a4.80566,4.80566,0,0,0-.45239-.17316c-.14533-.04529-.29474-.07721-.4458-.10907a5.209,5.209,0,0,0-1.30194-.11591,4.30025,4.30025,0,0,0-.54749-.00616c-.11377.00482-.22742.01044-.34.02039a5.00685,5.00685,0,0,0-.54406.08917c-.15479.03094-.31128.0567-.46106.10144a5.02919,5.02919,0,0,0-.47736.18133c-.15173.06263-.30554.12061-.44989.197-.14325.07587-.27453.16761-.40954.25641-.13941.09162-.28119.17969-.41083.28431-.12671.10217-.23871.2185-.35523.33221-.1167.114-.23639.22473-.342.34961-.10711.12665-.19732.26532-.29205.4024-.092.13312-.18738.26349-.26678.40564-.07923.14191-.14032.29309-.20612.44324a5.03553,5.03553,0,0,0-.19287.47546c-.04767.148-.07684.30262-.11121.45655a5.09108,5.09108,0,0,0-.10174.54376c-.01252.1123-.02057.22577-.028.33942a5.13475,5.13475,0,0,0-.0061.54486Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.407,287.96949c-.07409-.13684-.15912-.2644-.2456-.39312\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.56809,286.854c.10993.1103.21833.21955.3172.33985\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.62962,295.40168a3.52451,3.52451,0,0,1-.85376.34961\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.82835,291.83619c.01221-.06128.02411-.12274.03515-.18493\"/\u003e\u003cpath class=\"cls-3\" d=\"M205.23008,286.53627c-.12146-.10077-.251-.189-.38214-.2779\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.60362,288.39521a4.80075,4.80075,0,0,1,.17181.45362\"/\u003e\u003cpath class=\"cls-3\" d=\"M206.88273,289.29438a4.78269,4.78269,0,0,1,.08295.50873\"/\u003e\u003cpath class=\"cls-2\" d=\"M206.99412,290.59712v-.00006c-.00134.01922-.00409.03753-.00555.0567C206.99,290.63466,206.99278,290.61628,206.99412,290.59712Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M203.77586,295.75129a4.06042,4.06042,0,0,1-.98895.13117A4.06,4.06,0,0,0,203.77586,295.75129Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.20109,287.62336c.09473-.13708.18494-.27575.29205-.4024\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.93431,288.029c-.07923.14191-.14032.29309-.20612.44324\"/\u003e\u003cpath class=\"cls-3\" d=\"M196.53532,288.9477c-.04767.148-.07684.30262-.11121.45655\"/\u003e\u003cpath class=\"cls-3\" d=\"M197.83512,286.87135c.11652-.11371.22852-.23.35523-.33221\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.29667,290.08522c-.00568.06726.00073.13482-.00226.20221.00739-.11365.01544-.22712.028-.33942C196.31712,289.995,196.3007,290.03779,196.29667,290.08522Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M196.28831,290.83229a5.13475,5.13475,0,0,1,.0061-.54486A4.30856,4.30856,0,0,0,196.28831,290.83229Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M202.4434,285.41633a4.87812,4.87812,0,0,0-.61285-.0011,4.85377,4.85377,0,0,1,.79394.03125C202.56278,285.44014,202.50584,285.42036,202.4434,285.41633Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M203.57829,285.64021c-.14533-.04529-.29474-.07721-.4458-.10907\"/\u003e\u003cpath class=\"cls-3\" d=\"M204.03068,285.81337c.14514.06182.28839.12341.4256.19836\"/\u003e\u003cpath class=\"cls-3\" d=\"M200.399,285.51863a5.00685,5.00685,0,0,1,.54406-.08917\"/\u003e\u003cpath class=\"cls-3\" d=\"M199.46061,285.8014a5.02919,5.02919,0,0,1,.47736-.18133\"/\u003e\u003cpath class=\"cls-3\" d=\"M198.60118,286.25483c.135-.0888.26629-.18054.40954-.25641\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "WorkflowNode", diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json index a92f90ec640..4ef18cb93a6 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json index 8aa06a4d908..6616ee0ed68 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json index 2447fe7c323..6c9da38d9fe 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/IngressRouteUDP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json index 2e4f80e0594..e043cd5d8e6 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/Middleware.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json index be11b9f3b50..0022fc52bc8 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/MiddlewareTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json index cf64d0c56a6..409aa0d7a97 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/ServersTransport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json index 8d6acf05759..f8498af5164 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json index 30babd64e3b..abcec810d46 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TLSStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json index a84b5b3523d..fc6a1a91f2f 100644 --- a/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/fadi/0.3.1/v1.0.0/components/TraefikService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"#3ABC9B\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"#3ABC9B\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"45\" height=\"51\" viewBox=\"0 0 45 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M0 0H45V7.5C45 11.6421 41.6421 15 37.5 15H0V0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 18H37V25.5C37 29.6421 33.6421 33 29.5 33H0V18Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0 36H14V44C14 47.866 10.866 51 7 51H0V36Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json b/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json index 60a8eb35bc4..4e857e88884 100644 --- a/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json +++ b/server/meshmodel/flagger/1.37.0/v1.0.0/components/AlertProvider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#7BB09F\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#FFF\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json b/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json index 2817483d5c4..d98b251ca6c 100644 --- a/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json +++ b/server/meshmodel/flagger/1.37.0/v1.0.0/components/Canary.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#7BB09F\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#FFF\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json b/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json index ca860e9a578..eb3d39882bc 100644 --- a/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json +++ b/server/meshmodel/flagger/1.37.0/v1.0.0/components/MetricTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#7BB09F\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg fill=\"#FFF\" fill-rule=\"evenodd\"\u003e\u003cpath d=\"M11.787 17.78a1.73 1.73 0 0 1 0-2.902L31.166 2.28a1.73 1.73 0 0 1 .943-.28c.005 0 .005 28.658.005 28.658-.33 0-.66-.093-.948-.28L11.787 17.779Z\"/\u003e\u003cpath d=\"M1.787 24.28a1.73 1.73 0 0 1 0-2.902L21.166 8.78a1.73 1.73 0 0 1 .943-.28c.005 0-5.359 6.43-5.647 6.243L1.787 24.279ZM32.1 32.8c.331-.002.663.092.952.28l19.38 12.598a1.73 1.73 0 0 1 0 2.901l-19.38 12.599a1.73 1.73 0 0 1-.918.28L32.1 32.8Z\"/\u003e\u003cpath d=\"m42.66 51.682 19.77-12.504a1.73 1.73 0 0 1 0 2.901l-19.38 12.6c-.279.18-.598.274-.917.278 0 0 .236-3.463.525-3.275Z\"/\u003e\u003cpath d=\"M34.165 33.799c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 43.23l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Zm3.521-57.835c-.447-.223-1.257-1.023-2.04-.999-.678 0-.943.28-2.04.999 1.526.653 7.174 2.602 8.754 3.039-2.514-1.664-4.072-2.677-4.674-3.04Zm-6.002 1.25-1.736 1.128c1.51 1.111 3.02 1.98 4.53 2.604 3.07 1.27 6.972 2.089 7.862 2.308 5.052 1.246 9.823 2.422 13.66 6.259.194.194.377.393.558.592a1.731 1.731 0 0 0-.59-2.255l-7.591-4.936c-1.843-.608-3.72-1.073-5.575-1.53-1.75-.432-4.708-1.198-6.363-1.727-1.103-.353-2.688-1.167-4.755-2.443Zm-.288 5.156c-1.256-.577-2.592-1.37-4.009-2.377l-1.654 1.09c1.622 1.243 3.027 2.153 4.215 2.73 1.783.868 8.584 2.724 9.006 2.828 5.051 1.245 9.822 2.42 13.66 6.258l.018.02 1.641-1.067c-.1-.105-.194-.212-.297-.315-4.217-4.217-9.476-5.513-14.56-6.767-.581-.143-6.136-1.535-8.02-2.4Zm6.29 8.188c3.953 1.021 7.67 2.241 10.817 5.045l1.662-1.08c-3.597-3.382-7.638-5.015-12.189-5.879-4.08-.775-6.757-1.735-9.803-2.947-2.03-.807-3.676-1.805-4.934-2.993l-1.67 1.086c2.014 1.745 3.793 2.941 5.337 3.59 2.038.856 5.631 1.915 10.78 3.178ZM15.579 12.43l-1.65 1.072c.059.06.111.121.17.18 4.217 4.217 9.475 5.513 14.56 6.767 4.405 1.085 8.595 2.12 12.14 4.91l1.69-1.1c-3.993-3.362-8.75-4.543-13.368-5.68-5-1.234-9.725-2.403-13.542-6.15m-3.503 3.277a16.795 16.795 0 0 1-.552-.584c-.752.753-.663 2.05.28 2.663l5.706 3.71c2.525 1.046 5.167 1.7 7.764 2.34 4.054 1 7.928 1.957 11.284 4.28l1.725-1.122c-3.815-2.868-8.243-3.967-12.548-5.029-5.051-1.245-9.822-2.42-13.66-6.258m18.569 14.328c.38.185.756.38 1.125.588.44.093.908.016 1.3-.238l.957-.623c-3.077-2.058-6.497-3.1-9.906-3.968l6.524 4.241Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json index c2144a428dc..044570353f2 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/ApiInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json index 75648c9c38e..5a3ade97207 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Configuration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json index 328d8ee9be3..cca347b970c 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Extension.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json index 5b7b3cf5859..54f0469ed60 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/PolicyBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json index 8aa13cde570..753eb937924 100644 --- a/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json +++ b/server/meshmodel/flex-gateway/1.7.0/v1.0.0/components/Service.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json index 305380fa145..d0d97b30cf8 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFilter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterFilter", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json index 468b5cd7cb1..e9a2b1032c2 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentBitConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterFluentBitConfig", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json index cdbbbc19c63..8b30d0a3994 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterFluentdConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterFluentdConfig", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json index c6159f46cb2..b4878e2c552 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterInput.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterInput", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json index 138efd19d25..d9b62da1cf5 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterOutput.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterOutput", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json index 735e6b2e65e..cdd316c3930 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/ClusterParser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ClusterParser", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json index 33c6a359fad..9ccce84ac76 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Filter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Filter", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json index b0c76e700a7..4a1b0908972 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentBit.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FluentBit", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json index 467a15a870d..642d631cff2 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Fluentd.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Fluentd", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json index 3690e07ac09..932938d2ccf 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/FluentdConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "FluentdConfig", diff --git a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json index 48a73775e91..43384b24d1b 100644 --- a/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json +++ b/server/meshmodel/fluent-operator/0.1.0/v1.0.0/components/Output.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#7bb09f", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\n \u003cstyle\u003e\n svg {\n enable-background: new 0 0 432 432\n }\n \u003c/style\u003e\n \u003cg transform=\"translate(-657.1 -27.496)\"\u003e\n \u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\" /\u003e\n \u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#a)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#b)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#c)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#d)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#e)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#f)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#g)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#h)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#i)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#j)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#k)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#l)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#m)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#n)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#o)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#p)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#q)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#r)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#s)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#t)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#u)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003cg\u003e\n \u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\" /\u003e\n \u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\" /\u003e\n \u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\" /\u003e\n \u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#v)\"\n d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\" /\u003e\n \u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\" /\u003e\n \u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#w)\"\n d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\" /\u003e\n \u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#x)\"\n d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\" /\u003e\n \u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#4faac4\" /\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#y)\"\n d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\" /\u003e\n \u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\" /\u003e\n \u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#z)\"\n d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\" /\u003e\n \u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\"\n gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\" /\u003e\n \u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#A)\"\n d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\" /\u003e\n \u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\"\n gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\n \u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\" /\u003e\n \u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\" /\u003e\n \u003c/linearGradient\u003e\n \u003cpath fill=\"url(#B)\"\n d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\" /\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "Output", diff --git a/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json b/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json index 51084f96834..d05696a7c19 100644 --- a/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json +++ b/server/meshmodel/fluentd-operator/0.5.1/v1.0.0/components/FluentdConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#3695cb", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-3.45 35.55 439.40 362.15\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003clinearGradient id=\"a\" x1=\"5\" x2=\"427.679\" y1=\"-1063.216\" y2=\"-1063.216\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2a59a2\"/\u003e\u003cstop offset=\"1\" stop-color=\"#2a59a2\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M425.4 191.3h-7.5c-13.7-.2-40.1 1.3-63.9 21.9-57 49.3-70 122-167.5 161.2C105.2 407.1 5 376.2 5 376.2s89.4-6.2 101.2-74.4c9.3-53.3-39.3-91.2-69.7-139.3-31-49-38.9-89.7-24-107.3 42.3-50 158.8 85.1 216.7 103.3C285.8 176.3 324 135 370.9 141c15 1.9 22.3 8.4 27.1 16.6 1.6 2.8 5.7 12.2 9.3 15.7 3.5 3.4 8.2 5.9 12.6 8.5 5.5 3.3 11 9.5 5.5 9.5z\"/\u003e\u003clinearGradient id=\"b\" x1=\"-12.067\" x2=\"435.002\" y1=\"-1135.382\" y2=\"-1135.382\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#91d3f2\"/\u003e\u003cstop offset=\".266\" stop-color=\"#6fb2de\"/\u003e\u003cstop offset=\".521\" stop-color=\"#5598ce\"/\u003e\u003cstop offset=\".673\" stop-color=\"#4b8fc8\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M157.7 113.2c-14-10.7-28.4-21.8-42.7-32-3.2-2.3-6.4-4.5-9.6-6.7C67.3 48.4 32 32.1 12.5 55.2c-14.9 17.6-7 58.3 24 107.3.3.5.6 1 1 1.5 16.2 25 63 83.6 174.1 81.1 7.3-7.8 18.4-22.4 32.8-38.4-23.4-37.6-58.4-70.4-86.7-93.5z\"/\u003e\u003clinearGradient id=\"c\" x1=\"5.034\" x2=\"430.799\" y1=\"-964.816\" y2=\"-964.816\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#2c9ec7\"/\u003e\u003cstop offset=\".404\" stop-color=\"#2c63a5\"/\u003e\u003cstop offset=\"1\" stop-color=\"#395da1\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M269.6 289.9c.4-16.7-2.6-33.1-8.4-49-14.6 2.2-31 3.7-49.7 4.1-13.6 14.4-44.6 53-96.1 87.8C47 379.1 5 376.2 5 376.2s100.2 30.9 181.4-1.7c29.1-11.7 50.7-26.4 68.2-42.6 2.9-2.8 14.4-17 15-42z\"/\u003e\u003clinearGradient id=\"d\" x1=\"5.027\" x2=\"430.792\" y1=\"-1054.146\" y2=\"-1054.146\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f75b1\"/\u003e\u003cstop offset=\"1\" stop-color=\"#356eac\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M244.3 206.7c-14.3 15.9-25.5 30.6-32.8 38.4 18.7-.4 35.1-1.9 49.7-4.1-1.7-4.7-3.7-9.4-5.9-14-3.2-7-6.9-13.7-11-20.3z\"/\u003e\u003clinearGradient id=\"e\" x1=\"157.652\" x2=\"433.241\" y1=\"-1120.056\" y2=\"-1120.056\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2f81b6\"/\u003e\u003cstop offset=\"1\" stop-color=\"#3b5ea9\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M327.6 146.3c-30 9.1-59.9 24.3-98.4 12.2-19.1-6-44.5-24.7-71.5-45.2 28.3 23.1 63.4 55.8 86.7 93.5 21.2-23.7 49.5-49.9 83.2-60.5z\"/\u003e\u003clinearGradient id=\"f\" x1=\"157.642\" x2=\"433.23\" y1=\"-1014.548\" y2=\"-1014.548\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#1e3773\"/\u003e\u003cstop offset=\"1\" stop-color=\"#203370\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M261.3 240.9c5.8 15.9 8.8 32.3 8.4 49-.6 24.9-12.1 39.2-15 42 41-37.9 59.4-84 99.3-118.6 7.4-6.4 15.1-11 22.6-14.2-26.3 10.9-54.7 32.7-115.3 41.8z\"/\u003e\u003clinearGradient id=\"g\" x1=\"336.003\" x2=\"336.003\" y1=\"-991.53\" y2=\"-1142.651\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\".002\" stop-color=\"#2c5a9a\"/\u003e\u003cstop offset=\"1\" stop-color=\"#374580\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M425.4 191.3c5.5 0 0-6.3-5.6-9.5-4.4-2.6-9-5.1-12.6-8.5-3.6-3.5-7.6-12.9-9.3-15.7-4.9-8.3-12.2-14.7-27.1-16.6-15-1.9-29.2 1-43.3 5.3-33.7 10.6-62.1 36.9-83.3 60.4 4.1 6.6 7.8 13.3 11.1 20.2 2.2 4.6 4.2 9.3 5.9 14 60.7-9.2 89.1-30.9 115.3-41.9 16.5-7.2 31.9-7.8 41.4-7.7h7.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"-40.934\" x2=\"272.681\" y1=\"-1009.902\" y2=\"-1009.902\" gradientTransform=\"translate(0 1280)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\".112\" stop-color=\"#38b1da\"/\u003e\u003cstop offset=\"1\" stop-color=\"#326fb5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M115.5 332.8c51.4-34.8 82.5-73.4 96.1-87.8-111.1 2.5-158-56-174.1-81 30.5 47.4 77.9 85.1 68.8 137.8C94.4 370 5 376.2 5 376.2s42 2.9 110.5-43.4z\"/\u003e\u003cellipse cx=\"367.8\" cy=\"166.4\" fill=\"#fff\" rx=\"8.9\" ry=\"8.8\"/\u003e\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003cg transform=\"translate(-657.1 -27.496)\"\u003e\u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\"/\u003e\u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#i)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#j)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#k)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#l)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#m)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#n)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#o)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#p)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#q)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#r)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#s)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#t)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#u)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003cg\u003e\u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#v)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#w)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#x)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#y)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#z)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#A)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#B)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-4.20 32.80 439.40 364.90\" width='439.4' height='364.9'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003cg transform=\"translate(-657.1 -27.496)\"\u003e\u003ccircle cx=\"1024\" cy=\"192.2\" r=\"8.8\" fill=\"#fff\"/\u003e\u003clinearGradient id=\"a\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#a)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"b\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#b)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"c\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#c)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"d\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#d)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"e\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#e)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"f\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#f)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"g\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#g)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"h\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#h)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"i\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#i)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"j\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#j)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"k\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#k)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"l\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#l)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"m\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#m)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"n\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#n)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003clinearGradient id=\"o\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#o)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"p\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#p)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"q\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#q)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"r\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#r)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"s\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#s)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"t\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#t)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"u\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#u)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003cg\u003e\u003clinearGradient id=\"v\" x1=\"1431.47\" x2=\"1990.244\" y1=\"-937.473\" y2=\"-937.473\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".75\"/\u003e\u003cstop offset=\".32\" stop-color=\"#fff\" stop-opacity=\".57\"/\u003e\u003cstop offset=\".68\" stop-color=\"#fff\" stop-opacity=\".55\"/\u003e\u003cstop offset=\".9\" stop-color=\"#fff\" stop-opacity=\".45\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#v)\" d=\"M814 138.5c-14.1-10.8-28.5-22-42.6-32.1-3.3-2.3-6.6-4.6-9.5-6.9-38-26.2-73.4-42.6-93-19.6-15.1 17.7-6.9 58.6 23.9 108.1l1 1.6c16 25.2 62.9 84.5 174 81.9 7.2-7.9 18.4-22.6 32.8-38.6-23.3-38-58.4-71.1-86.6-94.4z\"/\u003e\u003clinearGradient id=\"w\" x1=\"1452.846\" x2=\"1985.002\" y1=\"-835.108\" y2=\"-835.108\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".4\"/\u003e\u003cstop offset=\".67\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#w)\" d=\"M900.5 232.9c-14.4 16-25.6 30.8-32.8 38.6 16.7-.3 33.4-1.6 49.8-4.2-1.6-4.9-3.6-9.5-5.9-14.1-3.2-6.9-7.1-13.8-11.1-20.3z\"/\u003e\u003clinearGradient id=\"x\" x1=\"1643.595\" x2=\"1988.033\" y1=\"-918.023\" y2=\"-918.023\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".97\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#x)\" d=\"M983.7 172c-30.1 9.2-60 24.6-98.3 12.4-19.3-5.9-44.6-24.9-71.8-45.5 28.5 22.9 63.6 56 86.8 94 21.4-23.9 49.9-50.1 83.3-60.9z\"/\u003e\u003clinearGradient id=\"y\" x1=\"1841.087\" x2=\"1841.087\" y1=\"-1002.015\" y2=\"-623.67\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4faac4\"/\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003cstop offset=\".964\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".26\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#y)\" d=\"M917.5 267.3c1.3 3.6 2.6 7.2 3.6 10.8 2.3 8.8 3.9 17.7 4.6 26.9.3 3.9.3 7.9.3 11.8-.6 25.2-12.1 39.6-15.1 42.2 40.9-38.3 59.3-84.5 99.3-119.5 6.9-5.9 14.4-10.8 22.6-14.4-26.1 11.1-54.7 33-115.3 42.2z\"/\u003e\u003clinearGradient id=\"z\" x1=\"1395.419\" x2=\"1787.213\" y1=\"-865.285\" y2=\"-865.285\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".6\"/\u003e\u003cstop offset=\".93\" stop-color=\"#fff\" stop-opacity=\".47\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#z)\" d=\"M693.8 190c30.5 47.8 78 85.8 68.8 138.9-11.8 68.5-101.2 74.7-101.2 74.7h2c8.8 0 48.5-3 108.4-43.6 51.4-35 82.6-74 96-88.4-12.4.3-23.9-.3-34.7-1.3-86.2-8.9-124.9-58.1-139.3-80.3z\"/\u003e\u003clinearGradient id=\"A\" x1=\"1452.857\" x2=\"1985.013\" y1=\"-722.681\" y2=\"-722.681\" gradientTransform=\"matrix(.8 0 0 .8 -500.932 920.276)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".38\"/\u003e\u003cstop offset=\".98\" stop-color=\"#fff\" stop-opacity=\".5\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#A)\" d=\"M925.7 316.8c.3-16.7-2.6-33.8-8.5-49.5-2.6.3-4.9.6-7.5 1-14.1 1.6-28.2 3-42.2 3-13.8 14.4-44.6 53.4-96 88.4-68.2 46.8-110.1 43.9-110.1 43.9s100.2 31.1 181.5-1.6c25.2-9.8 48.5-24.6 68.2-42.9 2.8-3.1 14.3-17.1 14.6-42.3z\"/\u003e\u003clinearGradient id=\"B\" x1=\"1866.472\" x2=\"1866.472\" y1=\"-888.514\" y2=\"-698.203\" gradientTransform=\"matrix(.8 0 0 -.8 -500.932 -395.46)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#fff\" stop-opacity=\".3\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\" stop-opacity=\".35\"/\u003e\u003c/linearGradient\u003e\u003cpath fill=\"url(#B)\" d=\"M1076.1 207.6c-4.6-2.3-8.8-5.2-12.4-8.5-3.6-3.6-7.5-13.1-9.2-15.7-4.9-8.2-12.1-14.8-27.2-16.7-15.1-2-29.2 1-43.2 5.2-33.8 10.8-62.2 37-83.5 60.9 4.2 6.6 7.9 13.4 11.1 20.3 2.3 4.6 4.2 9.5 5.9 14.1 60.6-9.2 89.1-31.1 115.3-42.2 13.1-5.6 27.2-8.2 41.3-7.9h7.5c5.5.4 0-6.2-5.6-9.5z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "FluentdConfig", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json index 377cb7e0fd2..3e7900724a5 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DaskAutoscaler", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json index ae310bbb924..add7729fa48 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DaskCluster", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json index 96dfadefe01..b93874f1ab9 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DaskJob", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json index c655f58c2e0..582e15d31ed 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "DaskWorkerGroup", diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json index 26c613caf6c..d3999cf1eb4 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json index 7441f166adc..f2eb2f11b5e 100644 --- a/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json +++ b/server/meshmodel/flyte-deps/1.12.1-rc0/v1.0.0/components/SparkApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json index e6b4dd647e4..32f6760b3ce 100644 --- a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json +++ b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/ScheduledSparkApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json index ef288e37469..9aea1c75473 100644 --- a/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json +++ b/server/meshmodel/flyte-sandbox/0.18.2-b1/v1.0.0/components/SparkApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json index 28fabf4e915..2786ba51683 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json index 21e45648044..2bd80a1c630 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json index 99b50871558..84d5df62687 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json index e57db95f4ed..e350b61fc31 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/DaskWorkerGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json index 3e57578e43e..579509142e8 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/ScheduledSparkApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json index 789b7f64747..c37cefb9771 100644 --- a/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json +++ b/server/meshmodel/flyte/1.12.1-rc0/v1.0.0/components/SparkApplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"url(#paint0_linear_27200_10226)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27200_10226\" x1=\"352\" y1=\"22\" x2=\"-45.5\" y2=\"167\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#702CEF\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E0C3D4\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"360\" height=\"334\" viewBox=\"0 0 360 334\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M90.9645 170.813C98.5922 152.686 102.475 134.037 105.971 115.32C111.931 83.4102 115.961 51.2881 114.607 18.7257C114.35 12.5383 116.092 10.2381 122.756 10.8675C140.801 12.5717 158.694 14.634 174.915 23.5203C179.21 25.8727 182.978 24.6098 187.084 23.4522C218.132 14.6978 249.616 8.76076 282.052 9.42766C303.366 9.86586 324.036 13.3066 343.696 22.1304C350.123 25.0152 352.504 29.1168 351.912 35.9404C350.319 54.3013 342.979 70.7579 335.357 87.1208C333.273 91.5939 330.243 89.0214 327.672 87.3977C301.802 71.0588 274.021 58.697 245.408 48.1425C225.099 40.651 204.561 33.8328 182.35 30.4296C189.204 37.2114 195.814 44.2622 202.954 50.7287C234.564 79.3587 267.506 106.223 305.578 126.046C309.779 128.233 310.797 130.476 307.915 134.568C297.332 149.598 286.505 164.442 270.625 174.392C265.902 177.351 264.772 181.56 263.602 186.234C254.498 222.593 241.27 257.19 219.577 288.099C210.617 301.136 199.532 312.577 186.783 321.944C180.981 326.142 175.814 326.636 169.933 322.216C155.742 311.55 145.072 297.815 135.181 283.339C132.462 279.361 134.392 277.183 137.889 275.384C166.401 260.719 191.734 241.464 216.153 220.93C231.176 208.506 245.38 195.125 258.678 180.87C255.874 178.199 253.47 180.165 251.373 180.724C204.321 193.269 159 210.113 117.332 235.735C111.637 239.237 108.608 238.801 105.832 232.396C98.7394 216.032 92.1648 199.528 91.0579 181.526C90.6952 175.628 87.0896 172.451 83.4953 168.958C57.844 144.031 35.5343 116.583 20.0104 84.114C12.428 68.255 6.8889 51.8001 6.2106 33.9338C5.9416 26.8477 8.81428 22.8945 15.2121 20.5889C30.0664 15.2098 45.6044 11.9498 61.3681 10.9048C67.6882 10.4831 69.2412 12.7091 69.0758 18.4114C67.9073 58.692 74.065 98.1664 82.6522 137.334C85.1137 148.562 88.1771 159.657 90.9645 170.813ZM179.413 39.508C169.096 92.9616 136.677 132.904 100.132 170.528C150.024 150.157 199.76 159.292 249.957 169.207C211.444 133.76 193.989 87.7136 179.413 39.508Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json index 8a9270e9d93..6fb54ba442e 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json index 3bf409c1224..2ffd8d446f9 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json index 236d377449c..b38c2ef5a75 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Grafana.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json index 70efce96caf..0d3d590cb9c 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDashboard.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json index 77edeea8ea3..bce30e451f0 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaDataSource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json index 69c942c1c06..21daeb5247e 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/GrafanaNotificationChannel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json index 64c398d366f..f18e783211c 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json index 5bd8cdaaa24..1d0b6361ef1 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json index 10ce9963378..acd79254c28 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json index a68befbabbe..7a8c1d462b8 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json index 4f362c07946..4c13b4da971 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json index 0507332c73d..428191da8d1 100644 --- a/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/fmtok8s-conference-chart/0.1.4/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#ed1652;fill-rule:evenodd;}.cls-2{fill:#5fc3ad;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 166.38 147.12\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-2{fill:#fff;}.cls-1{fill-rule:evenodd;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"New_Layer\" data-name=\"New Layer\"\u003e\u003cpath class=\"cls-1\" d=\"M70.49,1.3C67.29,2.7,62,9.7,62,12.4A10.9,10.9,0,0,0,63,16c.9,1.7,2.2,1.9,10.1,1.9,9,0,9.1,0,12.5,3.4,2.6,2.6,3.4,4.2,3.4,7.1,0,7.5-2.6,9.4-15.8,11.1-12.1,1.5-12.7,2.1-12.7,12.2,0,6.6.4,8.5,2.9,12.8a25.36,25.36,0,0,0,5.7,7.3c4.5,3.3,12.7,4.8,19.3,3.4,10.5-2.2,16.8-8.3,17-16.5.1-3.2-.6-4.5-4.1-8l-4.2-4.2-6.4,3.1c-8.5,4.2-14.3,5.3-20.4,3.9-3.1-.7-3.3-.6-3.3,1.8,0,3.4,3.1,4.9,9.4,4.4a19.9,19.9,0,0,0,9.2-3.2c5-3.2,10.5-4.4,12.1-2.4,2.6,3.2,2.4,5.6-.6,9-3.6,4.1-11.3,6.8-19.5,6.8-5,0-6.1-.4-8.6-2.8-5.1-5.1-6.2-14.9-2.3-20.8,1.6-2.5,5.2-3.9,12.8-4.9a28.12,28.12,0,0,0,7.6-2.1c3.9-2,7.9-7.2,7.9-10.2,0-3.2-3.1-10.2-5.1-11.9-.8-.6-5.4-1.4-10.4-1.7-7.3-.5-9.3-1-10.7-2.6-3.5-4.3,1.5-10,8.9-10,10.4,0,18.7,4.6,23.4,13,2.2,3.9,4.2,5,5.4,3,.8-1.3-3-9.9-5.8-12.9-4-4.3-9.4-6.1-18.7-6C77.19,0,72.19.6,70.49,1.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M107.79,6.6c-3.5.9-1.7,2,4,2.6,6.1.5,13,3.4,17,7.1A14.86,14.86,0,0,1,134,27.9c0,4.6-3.3,15.1-5.9,19-2.5,3.7-8.1,16.4-8.1,18.4,0,3.3,2.7,8.1,5.5,9.6a10.76,10.76,0,0,1,4,4.2c.6,1.5,3.5,4.5,6.5,6.5,5.4,3.8,7,6,8.7,11.7,2,6.8,12.5,9.6,17.7,4.7a14.56,14.56,0,0,0,3.6-6.1c2-7.3-4-19-9.7-19-2.8,0-3,1.1-.3,2.8,2.4,1.5,5.6,7.6,6.5,12.4.6,3.1.3,4.1-1.9,6.2-5,5.1-10.2,2.7-13.5-6.3a22.31,22.31,0,0,0-12.5-13.5c-4.2-1.7-7.4-6.2-8.4-11.8-1.5-7.8-.4-11.4,6.5-21.5,8.9-13.1,10.3-20.8,5.3-29-2.6-4.4-6-6.4-14.4-8.5C116.79,6,111.49,5.6,107.79,6.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M72.29,7.5A2.83,2.83,0,0,0,71,10c0,1.6.7,1.9,5.6,1.9,5.2,0,5.5-.1,5.2-2.3-.2-1.8-1-2.2-4.3-2.4A17.56,17.56,0,0,0,72.29,7.5Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M85.39,9c-.5.8.1,1.8,1.6,2.8,7.6,5.2,11.9,13.4,10.4,19.9-1.5,6.2-9.2,11.3-18.9,12.7-8.3,1.1-12.8,5.6-7,7.1,4,1,10.5-.5,17.5-4,5.4-2.6,7-4.1,9.6-8.4,4.7-7.7,5-11.1,1.9-18.1a38.07,38.07,0,0,0-5.8-8.9C91,8.6,86.59,7.1,85.39,9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.19,14c.2,1.4.9,2.3,1.7,2.1,4.7-1,14.2,5.7,16.1,11.4s-.5,12.1-10.2,28.7c-3.6,6-4,7.3-3.6,11.7.3,2.9,1.3,5.9,2.3,7,1.7,1.8,2,1.9,3.4.6,1.2-1.2,1.2-2,.3-4.1-2.4-5.2-1.4-10.5,3.7-20.2,11.4-21.5,11.5-30,.2-35.8a37.4,37.4,0,0,0-9.5-3C109,11.7,108.79,11.7,109.19,14Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26.39,17.1c-4.9,4.5-7.4,8.5-7.4,11.8,0,3.6,3.1,1.9,4.6-2.5a16.41,16.41,0,0,1,11.6-10.5c9.5-2.6,18,4.9,20.7,18.3.7,3.7,1.7,6.9,2.1,7.2s1.7-.6,2.9-1.9c1.9-2,2-2.7,1.1-7.4-1.7-9.2-6.2-15.8-12.3-18.1-1.6-.6-6.4-1.1-10.8-1.1C31,12.9,31,12.9,26.39,17.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.09,19.6c-5.7,3-9.6,10.3-5.9,11.1,1.2.2,1.9-.5,2.4-2.5,1.1-4.7,4.2-7.3,8.9-7.3s7.9,1.9,9.3,5.7-.1,6.9-3.8,8.8c-2.9,1.5-3.4,1.5-5.6,0-3.8-2.5-2.6-7.5,1.8-7.5,2.2,0,2.4,1.6.3,2.4-2.4.9-1.7,2.6,1,2.6a4.05,4.05,0,0,0,3.6-5.9c-2.1-3.8-9.1-4.3-11.5-.9-2.3,3.2-2,6.1.8,9.1,3.2,3.4,6.9,4.3,11.8,2.6,5.1-1.7,6.5-4.5,4.9-9.9C48.89,20.4,39.69,16.2,33.09,19.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M109.79,20.9c-3.4,2.6-3.9,6.1-1.7,10.9,2.7,6.1,8.9,7,10.9,1.6,1.8-4.8-1.5-10.2-5-8-1.6,1-1.2,5.5.5,5.5s2,1.6.5,2.5c-1.7,1-6-2.3-6-4.6,0-7.9,10.2-8.8,13.1-1.1,1.5,3.8-.4,9.6-3.4,10.9-1.7.8-2.6,2.2-3,5-.4,2.2-2.5,7.8-4.6,12.4a118.91,118.91,0,0,0-5.2,12.9c-1.1,4.1-1,4.9,1.4,9.6,2.8,5.6,8.4,11,12.1,12,4.1,1,6.5-.4,7.7-4.6,1-3.3.9-4.3-.5-6.5-2.2-3.3-6.2-3.4-7.8,0-.8,1.9-.8,2.8.2,4,1.4,1.7,3.4.9,2.6-1.1a1,1,0,0,1,1-1.4c2,0,2.9,2.7,1.4,4.5-1.9,2.3-5.7,1.8-7.6-1-.8-1.3-1.3-2.9-.9-3.5s-.2-2.1-1.3-3.3a19.9,19.9,0,0,1-3.1-5c-2.2-5.6-1.3-9.2,5.8-22.8,3.8-7.4,7.1-14.6,7.5-16.1,1-4.3-1.9-10.2-6.3-12.6C113.39,18.4,112.89,18.4,109.79,20.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M64.69,21.6c-1,1-.8,5.6.4,9.1,1.3,3.8,6,5.6,13,5,6.4-.7,7.9-2,7.9-7.4,0-3.3-.5-4.6-1.9-5.4-3-1.5-3.2-1.3-2.5,2.4a7.2,7.2,0,0,1-11.4,7c-2.4-1.7-3-6.2-1-8.2,1.7-1.7,5.7-1.5,6.4.3.9,2.3-.5,3.8-2.3,2.4-1.2-1-1.6-1-2.3.1-1.9,3.1,2.3,6,6,4,2.2-1.2,2.5-3.5,1-7.4-.9-2.4-1.4-2.6-6.8-2.6C68,20.9,65,21.2,64.69,21.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M16.39,35.3c-16.7,7.3-20.6,30-7,41,3.6,2.9,4.2,3.1,12.8,3.1,8.8,0,9-.1,11.8-3.2,5.4-6,5-17.8-.8-22.3-3.8-3-10.7-2.3-13.9,1.5-4.1,4.8-2.4,16.4,2.8,18,3,1,3.4-.1,1-3.1-2.8-3.5-2.8-9.7-.1-12.4,2.3-2.3,3-2.4,6.3-.9,3,1.3,4.7,4.8,4.7,9.4,0,6.4-10.9,12.5-18.5,10.4-12.1-3.4-13.7-24.2-2.8-34.4,2.5-2.2,3.6-2.5,10.5-2.5,4.2,0,7.9-.4,8.2-.8s-.2-1.8-1-3c-1.2-1.7-2.5-2.2-6.2-2.2A27.92,27.92,0,0,0,16.39,35.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M102.59,38.1c-2.2,3.1-2,7.4.4,9.8,2.2,2.2,6,2.6,7.8.8,3.1-3.1-.5-10.9-4.3-9.4-2.2.8-1.4,4.2.9,3.8,1.2-.2,1.7.2,1.4,1.5a3.07,3.07,0,0,1-2.6,2.1c-3.3.5-5-4.3-2.8-8.1C105.19,35.3,104.69,35,102.59,38.1Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M34,40.8c0,.5.9,1.2,1.9,1.6,5.8,1.8,11.1,11,11.1,19.3,0,6-1.1,8-5.2,9.5-2.2.8-2.4,4.7-.3,4.7,4.4,0,9.5-4.7,10.8-9.9,1.7-6.8-4.6-20.6-10.6-23.4C36.79,40.3,34,39.7,34,40.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M47.39,41.2c-.2.7,1.1,4,3.1,7.3a51.59,51.59,0,0,1,4.7,9.6,12.55,12.55,0,0,0,3,5.4c2.1,2,2.2,1.8.7-2.7C53.39,43.6,49.19,36.6,47.39,41.2Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M12.59,47a18.78,18.78,0,0,0-4.1,16.1c1.1,4.9,3.3,8.8,5.1,8.8,1.2,0,1.4-1,.8-5.8-.8-7.2,1.1-12.4,5.5-14.7,4.9-2.5,3.8-8.5-1.5-8.5C17,42.9,14.79,44.5,12.59,47Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,44.4c-1.6,1.9-.7,2.9,4.3,4.5,4.6,1.4,8.6,6.5,10.2,12.8s3,5.5,2.9-1.3c-.2-9.2-6.7-17.5-13.7-17.5A5.46,5.46,0,0,0,26,44.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M137.59,45a20.17,20.17,0,0,0-4.6,5.9c-1.6,3.1-1.7,4.4-.9,7.5,1.5,5.5,5.9,9.5,10.2,9.5,4.9,0,7.9-2.7,7.9-7.2,0-7.6-2.1-9.7-7.9-7.7-2.5.8-3.3,1.6-3.3,3.5,0,2.8,1.7,3.1,3.6.6,2-2.7,3.8-.2,1.8,2.6-1.8,2.7-4.5,2.8-6.7.4-4.3-4.7-.1-10.2,7.7-10.2,3,0,4,.6,5.6,3.2,3,4.9,2.7,11.3-.6,14.3a12.3,12.3,0,0,1-12.5,2.5c-3.4-1.4-7.9-7.3-8-10.5,0-1.9-.1-1.9-.9.2-1.3,3.1,1.3,12.3,4,14.5,2.4,2,8.2,3.8,12.1,3.8,3.4,0,8.8-3.7,11.6-7.9,4.5-6.6,2.2-19.9-4.2-24.9C148.69,42.1,141.29,42.1,137.59,45Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M88.69,58.4c-4,2.8-4.4,3.7-2.3,5.4,1.9,1.6,5.9.4,8.7-2.5,1.8-1.9,2-2.6.9-3.9C94.29,55.3,93.09,55.5,88.69,58.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24.39,62.4c-.8,3.1,2,7.8,4.4,7.3,2.1-.4,2.8-4.9,1.2-7.8S25.19,59.3,24.39,62.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M73,63.9c-2.4,1.5.2,3.2,4.6,2.8,2.7-.2,4-.8,4.2-2.1s-.4-1.7-3.5-1.7A13,13,0,0,0,73,63.9Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M55,66.6c0,2.6-3.5,7.9-6.5,9.9a33.88,33.88,0,0,1-7.8,2.9c-5.6,1.2-7.6,3.5-3,3.5,6.5-.1,11.5-1.8,14.9-5.1,1.9-1.8,3.4-4.1,3.4-5.1,0-2.2,2.3-2.3,4.4-.2s2.1,4.8,0,4c-1-.4-2.4.5-4,2.3-2.6,3.2-7.6,5.5-14.1,6.6-5.4.9-7.5,3.1-4.8,5.1,2.9,2.1,7,1.7,13.3-1.5,7.2-3.6,10.6-7.1,12.9-12.9,1.6-4.4,1.6-4.6-.1-5.6A40.62,40.62,0,0,1,59,67.1C55.59,64.4,55,64.4,55,66.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M99.39,74.4c-1.8,4.5,7.9,17.5,15.9,21.4,5.6,2.7,11.6,2.7,15.1,0,2.9-2.3,3.4-5.6.9-6.6-1-.4-2.2.2-3.3,1.5-5.8,7.1-17.5,1-23.7-12.4C101.79,72.8,100.39,71.7,99.39,74.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M1.19,78.4c-2,4.3-1.4,12.5,1.2,18,2.8,5.9,6.8,10,9,9.2,2.5-1,1.9-3.1-1.3-5-4.3-2.5-7.4-9.6-6.8-15.5a39.72,39.72,0,0,1,1.2-7C5.59,74.9,2.69,75.2,1.19,78.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M6,82.3a11.15,11.15,0,0,0,.1,6c1.1,4.1,6.4,10.6,8.5,10.6,1.8,0,1.8-.5-.1-3.4-.9-1.3-1.8-4.8-2.2-7.7s-1-6-1.6-6.7C9.19,79.2,7,79.7,6,82.3Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M148.39,82.4c-1.1,2.7.3,4.3,3,3.8a5.48,5.48,0,0,1,4.1.7c2,1.6,2,6,0,6-.9,0-1.5-.9-1.5-2.1,0-1.4-.5-1.9-1.7-1.7-1.7.4-2.1,3.2-.8,6.5.6,1.8,6,1.6,7.5-.2,1.9-2.3-.3-8.8-4.1-11.9C151.39,80.6,149.19,80.2,148.39,82.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M26,82.6c-3.6,1.4-5.1,6.1-2.7,8.2,2,1.6,5.7-1.2,4-3-1.9-1.9-1.6-2.9.7-2.9s3.6,4,2.1,6.9a6.7,6.7,0,0,1-3.8,2.7c-3.9,1-7.7-3.6-6.8-8.3.5-3,.4-3.3-2-3.3-2.2,0-2.5.4-2.5,3.7a15.35,15.35,0,0,0,2,7c1.9,3.1,2.3,3.3,8,3.3,5.3,0,6.1-.3,7.6-2.5s1.5-3.2.5-6.5-3.7-6.3-5.3-5.9A11.8,11.8,0,0,0,26,82.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M135.69,92.6q-1.8,1.65,1.2,8.7c1.6,3.6,3.1,5.1,7.4,7.6,7.5,4.2,9,6.1,9.4,12.3.7,9.7-5,14.7-17.1,14.7-5.9,0-6.6.2-6.6,2,0,3,3.6,4.3,10.6,3.7,11.5-.9,16.3-5.8,17.2-17.6.6-8.9-2-15.6-6.7-16.6a12.25,12.25,0,0,1-9.3-8.8C140.09,92.5,137.89,90.4,135.69,92.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M36.59,95.7c-.3.5,0,4.8.7,9.5.9,7,1.5,8.7,2.8,8.7,2.4,0,2.9-2,2.9-11.1V94.9h-2.9C38.39,94.9,36.89,95.3,36.59,95.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M24,99.6c-9.7,3.8-14.9,18.4-10.1,28.8,2.3,5.1,9,11.2,13.3,12,5.5,1,12.3.2,12.3-1.5,0-1-1.5-1.7-4.8-2.2-6.9-.9-11.9-4.6-15.1-10.9-5-10.1-2.6-20.9,4.6-20.9,2.6,0,3.2.6,5.1,5,2.3,5.5,3.7,5.9,4.8,1.6,1-3.7.1-8.1-2-10C30.19,99.8,26.09,98.8,24,99.6Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M131.29,99.4c.3.5,1.2,3.6,2.1,6.7,1.5,5.3,1.9,5.8,5.5,6.8,4.5,1.2,6.9,3.5,7.7,7.7,1.2,6.1-7,10.9-10.9,6.5a5.77,5.77,0,0,1-1.7-3.4c0-2.2,3.7-5.1,5.5-4.5,2.1.9,1.9,2.4-.5,3-3.2.8-2.5,3.7,1,3.7,6,0,4.5-9.1-1.7-10.3-3.5-.7-6.1.7-7.3,3.9-2.7,7.1,0,11.1,8.2,12,5.4.6,5.8.5,8.7-2.4,2.5-2.4,3.1-3.9,3.1-7.2,0-4.6-1.5-6.4-9.3-11.1-2.6-1.6-5.6-4.3-6.5-6C133.49,101.8,130.39,97.5,131.29,99.4Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M126.39,104.8c1.4,8.9,4.6,12.5,4.6,5.1,0-4.7-1.8-9-3.8-9C126.09,100.9,125.89,101.8,126.39,104.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M21,109.8c-1.5,2.9-1.2,4,1,3.4,1.4-.4,2,0,2,1.1,0,1.9,1.9,2.1,2.6.3.7-2-1.4-6.7-3-6.7A3.68,3.68,0,0,0,21,109.8Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M20,117.7c-.1,4.9,6.2,12.7,9.7,12,2.4-.4,2.8-3.9.8-7.7s-3.7-4-3.3-.5c.5,4.5-2,3.8-4.6-1.3C20.69,116.5,20.09,115.9,20,117.7Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M33.49,117.9c-.3.5.1,2.3.9,3.9a13.81,13.81,0,0,1,1.3,6.8c-.2,3.2.1,3.8,1.8,3.8s2-.8,2.3-4.7C40.29,120.7,35.89,113.9,33.49,117.9Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M122.09,100.27C98.32,99.73,95.6,76.63,95.6,76.63c-16,6.93-28.26,0-28.26,0-2.17,15-17.25,17.66-17.25,17.66l-6.25,52.83h82.59ZM59.65,126.52c-3.74,0-6.77-5.77-6.77-12.89s3-12.89,6.77-12.89,6.78,5.77,6.78,12.89S63.39,126.52,59.65,126.52Zm31,0H80.13c-3.62-6.37,6.93-4.74,6.93-4.74C92.4,122,90.62,126.52,90.62,126.52Zm19.46,0c-3.74,0-6.78-5.77-6.78-12.89s3-12.89,6.78-12.89,6.77,5.77,6.77,12.89S113.82,126.52,110.08,126.52Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json b/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json index a780c56eb13..35b34fffb6d 100644 --- a/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json +++ b/server/meshmodel/forecastle/1.0.139/v1.0.0/components/ForecastleApp.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json index e7bded2f2c0..e9a46a054f6 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json index 2f868e73c00..e4034e71104 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json index 13a64a3921b..6519da3ecda 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/IngressRouteUDP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json index 09b3acf5a2a..d3090e9f9c6 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/Middleware.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json index ece22a47ded..85b99725f6e 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/MiddlewareTCP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json index b22e1b4ed1c..996ad6d12e2 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransport.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json index d158da3a9b5..e36f6cc1ac2 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/ServersTransportTCP.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#00B39F", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" + "svgWhite": "" }, "component": { "kind": "ServersTransportTCP", diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json index 4b6e82b603e..b1bca32f413 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json index 39bab60bb3c..dfc1caddbad 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TLSStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json index c6b0b3d824f..5f28618979c 100644 --- a/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/frinx-machine/8.0.1/v1.0.0/components/TraefikService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"#03AAFF\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#0370FF\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", "svgWhite": "\u003csvg width=\"144\" height=\"146\" viewBox=\"0 0 144 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M3 0H46L143.5 146H100.5L3 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M140.5 0H97.5L0 146H43L140.5 0Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M50.5 70.5L71.5 39L93 70.5L72 103L50.5 70.5Z\" fill=\"#F0F0F0\"/\u003e\n\u003c/svg\u003e\r" diff --git a/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json b/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json index f5a124deabc..aa4d41541eb 100644 --- a/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json +++ b/server/meshmodel/gafaelfawr/4.6.1/v1.0.0/components/GafaelfawrServiceToken.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json index 6b6eb8d9f74..b7595ccc3e8 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Binding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json index 33163177772..9049d8cfd3d 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Exchange.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json index 38c0e5b34d2..d6739a5a4ac 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Federation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json index 7d883575672..321cf34d93a 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/OperatorConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json index a7a010d8999..082111fbf0e 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Permission.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json index 85093488650..7ea40463d0f 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Policy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json index 28a9d4aa72b..5639d4f1140 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/PostgresTeam.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json index 6254ed5f151..448b621396f 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Queue.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json index 0a86fb75219..1a2a86c0d22 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/RabbitmqCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json index 2bddc22adf8..e557ea731a2 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SchemaReplication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json index 67a20ac1180..803424dace4 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Shovel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json index de767d63426..e34cc20cd4e 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/SuperStream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json index c3c876818ac..4ca1e6f2455 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/User.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json index b7fa3926981..4ec0d496400 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/Vhost.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json index 9d4f7cb1693..91b263a84b0 100644 --- a/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json +++ b/server/meshmodel/galaxy/5.14.0/v1.0.0/components/postgresql.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"#58585A\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"url(#paint0_linear_27226_21870)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_27226_21870\" x1=\"129\" y1=\"342.5\" x2=\"506\" y2=\"342.5\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#D1BE06\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#E7E5DE\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"506\" height=\"397\" viewBox=\"0 0 506 397\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect y=\"149\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003crect x=\"129\" y=\"288\" width=\"377\" height=\"109\" rx=\"8\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json b/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json index 12513ab4c9c..b3c50227076 100644 --- a/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json +++ b/server/meshmodel/galoy/0.33.105/v1.0.0/components/OAuth2Client.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json b/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json index da55add16ca..7058e73c965 100644 --- a/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json +++ b/server/meshmodel/galoy/0.33.105/v1.0.0/components/Rule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json index ab28b095d29..f9f05aff090 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Assign.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Assign", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json index c978ee7f8fe..11998239f8b 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignImage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AssignImage", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json index 92f5b9e0f1f..db4c13b5de3 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/AssignMetadata.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "AssignMetadata", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json index e1fc282b451..1950371c454 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Config.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#566366", - "secondaryColor": "#9BA8AB", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json index f5f0c0f2014..b1bc6a68d07 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintPodStatus.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#566366", - "secondaryColor": "#9BA8AB", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json index 54ba87d35e6..08666774afe 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ConstraintTemplate", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json index 72e0be67d40..9dd30f02a52 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ConstraintTemplatePodStatus.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#566366", - "secondaryColor": "#9BA8AB", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json index 9346b3c5836..fa4d1a20e21 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ExpansionTemplate", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json index 34268af3515..6543f03fa36 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ExpansionTemplatePodStatus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ExpansionTemplatePodStatus", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json index 834b7ec2c0b..4a51dee1567 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/ModifySet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "ModifySet", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json index f8f71186680..b449e418591 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/MutatorPodStatus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "MutatorPodStatus", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json index 89f2621e4b7..592638e5ce1 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/Provider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#566366", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\" width='395.51' height='435.76'\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, "component": { "kind": "Provider", diff --git a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json index 1eede8bc88d..252610099e1 100644 --- a/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json +++ b/server/meshmodel/gatekeeper/3.17.0-beta.0/v1.0.0/components/SyncSet.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, - "primaryColor": "#566366", - "secondaryColor": "#9BA8AB", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.37 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cpath fill=\"#bfbfbf\" d=\"M71 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.3 85.4 100.7 6.7 100.7 6.7S30 92.8 25.1 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.4zm287.7-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86-4.9-34.8-75.6-120.9-75.6-120.9s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.4 31 41.6 38.6 68.1z\"/\u003e\u003cpath fill=\"#566366\" d=\"M358.7 213.2v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1 0-.2-.1-.3z\"/\u003e\u003cpath fill=\"#7d9199\" d=\"M214.7 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\"/\u003e\u003cpath fill=\"#fff\" d=\"M196.7 209.7c0 1.7.2 3.3.7 4.8 2.1 7.6 9 13.2 17.3 13.3h.3c8.7-.1 16-6.4 17.6-14.7.2-1.1.3-2.2.3-3.4 0-9.9-8-18-17.9-18.1h-.2c-10 0-18.1 8.1-18.1 18.1z\"/\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.62 -1.63 395.51 435.76\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 432 434}\u003c/style\u003e\u003cg fill=\"#fff\"\u003e\u003cpath d=\"M71.1 214.5c7.5-26.7 20.9-50.1 38.4-68.8-5.9-4.4-29.3-22.6-30.4-36.9C77.5 85.4 100.9 6.7 100.9 6.7S30.2 92.8 25.3 127.6c-3.9 27.3 40.8 81.5 45.5 87v-.1h.3zm287.8-1.4v.2c0 .1.1.2.1.3 7.8-9.4 48.3-59.9 44.6-86C398.7 92.8 328 6.7 328 6.7s23.4 78.7 21.7 102.1c-1 13.7-22.3 30.8-29.4 36.2 17.5 18.5 30.9 41.7 38.6 68.1z\" opacity=\".64\"/\u003e\u003cpath d=\"M358.9 213.3v-.2c-7.6-26.4-21.1-49.6-38.6-68.1-27.5-29-64.9-46.4-105.2-46.4v93h.1c9.9.1 17.9 8.2 17.9 18.1 0 1.2-.1 2.3-.3 3.4-1.6 8.3-8.8 14.6-17.6 14.7h-.3v34.5l-.2 163.4h3.5s38-55 58.5-70.7c24-18.4 82.2-41.2 82.2-41.2v-99.4l.3-.1c-.1-.2-.1-.5-.2-.7 0-.1-.1-.2-.1-.3z\" opacity=\".85\"/\u003e\u003cpath d=\"M214.9 262.3v-34.5c-8.3-.1-15.2-5.7-17.3-13.3-.4-1.5-.7-3.1-.7-4.8 0-10 8.1-18.1 18.1-18.1h.1V98.9c-40.5 0-78 17.5-105.5 46.8-17.5 18.6-30.9 42.1-38.4 68.8h-.3v100.7s58.2 22.8 82.2 41.2c19.9 15.3 58.3 69.4 58.3 69.4h3.6v-.1h-.2l.1-163.4z\" opacity=\".75\"/\u003e\u003c/g\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json b/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json index 758db10e236..d2f5a05a169 100644 --- a/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json +++ b/server/meshmodel/gemini/2.1.3/v1.0.0/components/SnapshotGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,7 +55,8 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json index d5cc08aa387..792033b02d2 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/Gerrit.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Gerrit", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json index 7dd9de4d205..d9a8c9ba9b3 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GerritGroup", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json index 0bee0daf61b..aa1051cead3 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritGroupMember.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GerritGroupMember", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json index 8790c5ce0b6..c8d652a792a 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritMergeRequest.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GerritMergeRequest", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json index 53773192439..b7f9772e5eb 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GerritProject", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json index f47256fa973..cca3474f5c9 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritProjectAccess.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GerritProjectAccess", diff --git a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json index 58f2835d694..8a519918091 100644 --- a/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json +++ b/server/meshmodel/gerrit-operator/2.20.1/v1.0.0/components/GerritReplicationConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00ABCD", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#B2B2B2;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#E71D73;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#00ABCD;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 590.1 207.7\" style=\"enable-background:new 0 0 590.1 207.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st3{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9969,0.9969;}\n .st4{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1,1;}\n .st5{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.993,0.993;}\n .st6{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:1.0017,1.0017;}\n .st7{fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;stroke-dasharray:0.9926,0.9926;}\n .st8{display:inline;fill:none;stroke:#ffffff;stroke-width:0.25;stroke-miterlimit:10;}\n .st9{fill:#9D9D9C;}\n .st10{fill:#424241;}\n .st11{display:inline;fill:#00ABCD;}\n .st12{display:inline;fill:#4D4949;}\n .st13{fill:#FFFFFF;}\n .st14{fill:#00ABCD;}\n\u003c/style\u003e\n\u003cg id=\"Grid_x2F_Specs\" class=\"st0\"\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"244.5\" y1=\"254.2\" x2=\"245\" y2=\"254.2\"/\u003e\n \u003cline class=\"st3\" x1=\"246\" y1=\"254.2\" x2=\"546.5\" y2=\"254.2\"/\u003e\n \u003cline class=\"st2\" x1=\"547\" y1=\"254.2\" x2=\"547.5\" y2=\"254.2\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"323.4\" x2=\"547.5\" y2=\"323.4\"/\u003e\n \u003cline class=\"st4\" x1=\"244.5\" y1=\"288.9\" x2=\"547.5\" y2=\"288.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"228.9\" x2=\"295.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"295.9\" y1=\"230.4\" x2=\"295.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"295.9\" y1=\"347.6\" x2=\"295.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"228.9\" x2=\"270.9\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"270.9\" y1=\"230.4\" x2=\"270.9\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"270.9\" y1=\"347.6\" x2=\"270.9\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"521.2\" y1=\"228.9\" x2=\"521.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"228.9\" x2=\"308.4\" y2=\"229.4\"/\u003e\n \u003cline class=\"st5\" x1=\"308.4\" y1=\"230.4\" x2=\"308.4\" y2=\"347.1\"/\u003e\n \u003cline class=\"st2\" x1=\"308.4\" y1=\"347.6\" x2=\"308.4\" y2=\"348.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st4\" x1=\"483.8\" y1=\"228.9\" x2=\"483.8\" y2=\"348.1\"/\u003e\n \u003cline class=\"st4\" x1=\"496.2\" y1=\"228.9\" x2=\"496.2\" y2=\"348.1\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpolyline class=\"st2\" points=\"546.2,347.6 546.2,348.1 545.7,348.1 \"/\u003e\n \u003cline class=\"st6\" x1=\"544.7\" y1=\"348.1\" x2=\"246.7\" y2=\"348.1\"/\u003e\n \u003cpolyline class=\"st2\" points=\"246.2,348.1 245.7,348.1 245.7,347.6 \"/\u003e\n \u003cline class=\"st7\" x1=\"245.7\" y1=\"346.6\" x2=\"245.7\" y2=\"230\"/\u003e\n \u003cpolyline class=\"st2\" points=\"245.7,229.5 245.7,229 246.2,229 \"/\u003e\n \u003cline class=\"st6\" x1=\"247.2\" y1=\"229\" x2=\"545.2\" y2=\"229\"/\u003e\n \u003cpolyline class=\"st2\" points=\"545.7,229 546.2,229 546.2,229.5 \"/\u003e\n \u003cline class=\"st7\" x1=\"546.2\" y1=\"230.5\" x2=\"546.2\" y2=\"347.1\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"270.7\" y1=\"362.9\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"293.8\" x2=\"270.9\" y2=\"362.9\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"317.1\" x2=\"295.9\" y2=\"362.9\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M281.6,368.7l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L281.6,368.7L281.6,368.7z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M372.8,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L372.8,547L372.8,547z\"/\u003e\n \u003cpath d=\"M376.1,544.4h-0.4c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.4-0.2s-0.3,0-0.4,0.1s-0.2,0.2-0.3,0.4\n c-0.1,0.2-0.1,0.5-0.1,0.8c0.1-0.2,0.2-0.3,0.4-0.3c0.1-0.1,0.3-0.1,0.5-0.1c0.3,0,0.5,0.1,0.7,0.3s0.3,0.5,0.3,0.8\n c0,0.2,0,0.4-0.1,0.6s-0.2,0.3-0.4,0.4s-0.4,0.1-0.6,0.1c-0.4,0-0.6-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.3c0-0.7,0.1-1.2,0.4-1.5\n c0.2-0.3,0.5-0.4,0.9-0.4c0.3,0,0.5,0.1,0.7,0.2C376,543.9,376.1,544.1,376.1,544.4z M374.3,545.9c0,0.1,0,0.3,0.1,0.4\n s0.1,0.2,0.3,0.3s0.2,0.1,0.4,0.1c0.2,0,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C374.4,545.5,374.3,545.6,374.3,545.9z\"/\u003e\n \u003cpath d=\"M376.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L376.7,547L376.7,547z\"/\u003e\n \u003cpath d=\"M380.7,547v-2.5h0.4v0.4c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5,0.1c0.1,0.1,0.2,0.2,0.3,0.3\n c0.2-0.3,0.5-0.4,0.8-0.4c0.2,0,0.4,0.1,0.6,0.2c0.1,0.1,0.2,0.4,0.2,0.6v1.7h-0.4v-1.6c0-0.2,0-0.3,0-0.4c0-0.1-0.1-0.1-0.2-0.2\n s-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.5h-0.4v-1.6c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.1-0.3-0.1\n c-0.1,0-0.2,0-0.3,0.1s-0.2,0.2-0.2,0.3s-0.1,0.3-0.1,0.5v1.3L380.7,547L380.7,547z\"/\u003e\n \u003cpath d=\"M386,545.7c0-0.5,0.1-0.8,0.4-1c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.9c0,0.3,0,0.6-0.1,0.8\n s-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.9-0.3C386.1,546.5,386,546.2,386,545.7z M386.4,545.7\n c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.5-0.2-0.7s-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C386.5,545.2,386.4,545.4,386.4,545.7z\"/\u003e\n \u003cpath d=\"M388.8,547v-2.5h0.4v0.4c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.3,0,0.4,0.1l-0.1,0.4\n c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.2-0.1,0.3-0.1,0.5v1.3L388.8,547L388.8,547z\"/\u003e\n \u003cpath d=\"M393.3,547h-0.4v-2.7c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.2-0.4,0.2v-0.4c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.3,0.4-0.5\n h0.3v3.5L393.3,547L393.3,547z\"/\u003e\n \u003cpath d=\"M394.4,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C394.5,546.4,394.4,545.9,394.4,545.3z M394.8,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C394.9,544.3,394.8,544.7,394.8,545.3z\"/\u003e\n \u003cpath d=\"M397.1,545.3c0-0.4,0-0.7,0.1-1c0.1-0.2,0.2-0.4,0.4-0.6s0.4-0.2,0.6-0.2s0.4,0,0.5,0.1s0.3,0.2,0.3,0.3\n c0.1,0.1,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.5,0.1,0.8c0,0.4,0,0.7-0.1,1s-0.2,0.4-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2\n c-0.3,0-0.6-0.1-0.8-0.4C397.2,546.4,397.1,545.9,397.1,545.3z M397.5,545.3c0,0.6,0.1,1,0.2,1.1c0.1,0.2,0.3,0.3,0.5,0.3\n s0.4-0.1,0.5-0.3s0.2-0.6,0.2-1.1c0-0.6-0.1-1-0.2-1.1c-0.1-0.2-0.3-0.3-0.5-0.3s-0.4,0.1-0.5,0.2\n C397.6,544.3,397.5,544.7,397.5,545.3z\"/\u003e\n \u003cpath d=\"M401.3,548v-3.5h0.4v0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.3,0.4,0.5\n s0.1,0.4,0.1,0.7s0,0.5-0.1,0.7s-0.2,0.4-0.4,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.3,0-0.4-0.1s-0.2-0.1-0.3-0.2v1.2h-0.4V548z\n M401.7,545.8c0,0.3,0.1,0.6,0.2,0.7c0.1,0.2,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.1-0.2,0.2-0.4,0.2-0.7s-0.1-0.6-0.2-0.7\n c-0.1-0.2-0.3-0.2-0.5-0.2s-0.3,0.1-0.5,0.3C401.7,545.2,401.7,545.4,401.7,545.8z\"/\u003e\n \u003cpath d=\"M404,544v-0.5h0.4v0.5H404z M404,547v-2.5h0.4v2.5H404z\"/\u003e\n \u003cpath d=\"M404.8,547l0.9-1.3l-0.9-1.2h0.5l0.4,0.6c0.1,0.1,0.1,0.2,0.2,0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.4-0.6h0.5l-0.9,1.2l0.9,1.3\n h-0.5l-0.5-0.8V546l-0.7,1H404.8z\"/\u003e\n \u003cpath d=\"M409.2,546.2l0.4,0.1c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-1\n c0-0.4,0.1-0.8,0.3-1s0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3s0.3,0.6,0.3,1v0.1h-1.9c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2\n s0.3,0,0.4-0.1C409.1,546.5,409.2,546.4,409.2,546.2z M407.8,545.5h1.4c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.2-0.3-0.2-0.5-0.2\n s-0.4,0.1-0.5,0.2C407.9,545.1,407.8,545.3,407.8,545.5z\"/\u003e\n \u003cpath d=\"M410.2,547v-3.5h0.4v3.5H410.2z\"/\u003e\n \u003cpath d=\"M411.1,546.2l0.4-0.1c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.1,0.5,0.1s0.3,0,0.4-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.2\n s-0.2-0.1-0.4-0.1c-0.3-0.1-0.5-0.1-0.7-0.2s-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3s0.1-0.2,0.2-0.2\n s0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.4-0.1c0.2,0,0.4,0,0.5,0.1s0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4l-0.4,0.1\n c0-0.1-0.1-0.2-0.2-0.3s-0.2-0.1-0.4-0.1c-0.2,0-0.3,0-0.4,0.1s-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1\n c0,0,0.2,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.6,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.3-0.1,0.4\n c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.5,0.1c-0.3,0-0.6-0.1-0.7-0.2C411.3,546.7,411.2,546.5,411.1,546.2z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath class=\"st9\" d=\"M377.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H380v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H377.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M381.5,540v-4.3h0.6v4.3H381.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M382.9,540v-4.3h0.5l1.1,2.6v-2.6h0.6v4.3h-0.4l-1.1-2.8v2.8H382.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M385.7,540v-4.3h0.6v4.3H385.7z\"/\u003e\n \u003cpath class=\"st9\" d=\"M387.1,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3h-0.6v-3.4l-0.6,3.4h-0.5l-0.6-3.4v3.4H387.1z\"/\u003e\n \u003cpath class=\"st9\" d=\"M392.4,539.9c-0.1,0-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.2-0.3\n c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.2,0-0.3,0-0.5v-2.7h0.6v2.7c0,0.1,0,0.2,0,0.3s0,0.2,0,0.3s0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.2,0.2\n c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3v-2.7h0.6\n v2.7c0,0.2,0,0.4,0,0.5c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.2,0.3C392.7,539.8,392.6,539.9,392.4,539.9z\"/\u003e\n \u003cpath class=\"st9\" d=\"M393.8,540v-4.3h0.8l0.6,3.3l0.6-3.3h0.8v4.3H396v-3.4l-0.6,3.4H395l-0.6-3.4v3.4H393.8z\"/\u003e\n \u003cpath class=\"st9\" d=\"M399.7,540c-0.4,0-0.7-0.1-0.9-0.3c-0.2-0.2-0.3-0.5-0.3-0.9l0.6-0.2c0,0.6,0.2,0.9,0.6,0.9\n c0.3,0,0.5-0.2,0.5-0.5c0-0.1,0-0.2,0-0.3s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.2-0.1l-0.8-0.6\n c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.6,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3s0.6,0.1,0.8,0.3\n c0.2,0.2,0.3,0.4,0.4,0.7v0.1l-0.6,0.2v-0.1c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.3,0.1\n c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.3,0.6l0.8,0.6c0.4,0.3,0.6,0.7,0.6,1.2c0,0.3-0.1,0.6-0.3,0.7S400,540,399.7,540z\"/\u003e\n \u003cpath class=\"st9\" d=\"M401.3,540v-4.3h0.6v4.3H401.3z\"/\u003e\n \u003cpath class=\"st9\" d=\"M402.5,540v-0.5l1.4-3.3h-1.2v-0.5h1.8v0.5l-1.4,3.3h1.4v0.5H402.5z\"/\u003e\n \u003cpath class=\"st9\" d=\"M405.1,540v-4.3h1.7v0.5h-1.1v1.4h0.8v0.5h-0.8v1.5h1.1v0.5h-1.7V540z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"241.1\" x2=\"270.9\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"245.7\" y1=\"236.8\" x2=\"245.7\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"270.9\" y1=\"236.8\" x2=\"270.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"533.9\" y1=\"254.3\" x2=\"533.9\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"254.2\" x2=\"538.2\" y2=\"254.2\"/\u003e\n \u003cline class=\"st8\" x1=\"529.5\" y1=\"229\" x2=\"538.2\" y2=\"229\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"241.1\" x2=\"308.4\" y2=\"241.1\"/\u003e\n \u003cline class=\"st8\" x1=\"295.9\" y1=\"236.8\" x2=\"295.9\" y2=\"245.4\"/\u003e\n \u003cline class=\"st8\" x1=\"308.4\" y1=\"236.8\" x2=\"308.4\" y2=\"245.4\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M298.6,237.3V236c-0.2,0.1-0.3,0.2-0.5,0.3V236c0.1,0,0.2-0.1,0.3-0.2s0.2-0.2,0.3-0.3h0.3v1.8H298.6z M298.3,239.2\n l2.6-3.7h0.4l-2.6,3.7H298.3z M300.3,239.1c0-0.1,0-0.2,0.1-0.3s0.3-0.3,0.5-0.5s0.4-0.3,0.4-0.3c0.1-0.1,0.1-0.1,0.1-0.2\n c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1s-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.1,0.2h-0.4c0-0.2,0.1-0.3,0.2-0.4\n c0.1-0.1,0.3-0.1,0.5-0.1s0.4,0,0.5,0.1s0.2,0.2,0.2,0.3s0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.2h0.9\n v0.3h-1.5V239.1z\"/\u003e\n \u003cpath d=\"M303.3,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L303.3,239.1L303.3,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M256.7,239.1l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L256.7,239.1L256.7,239.1z\"/\u003e\n \u003c/g\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"526.4\" x2=\"442.2\" y2=\"526.4\"/\u003e\n \u003cline class=\"st8\" x1=\"342.2\" y1=\"522\" x2=\"342.2\" y2=\"530.7\"/\u003e\n \u003cline class=\"st8\" x1=\"442.2\" y1=\"522\" x2=\"442.2\" y2=\"530.7\"/\u003e\n \u003cg class=\"st1\"\u003e\n \u003cpath d=\"M527.9,243.8l1.3-1.8l-1.2-1.7h0.5l0.6,0.9c0.1,0.2,0.2,0.3,0.3,0.4c0.1-0.1,0.2-0.3,0.3-0.4l0.7-0.9h0.5l-1.2,1.6\n l1.3,1.8h-0.6l-0.9-1.2c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.1-0.1,0.2-0.2,0.3l-0.9,1.2L527.9,243.8L527.9,243.8z\"/\u003e\n \u003c/g\u003e\n \u003cg class=\"st1\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.6,503.8l0.8-1c0.5,0.4,1.1,0.7,1.6,0.7c0.6,0,0.9-0.2,0.9-0.6s-0.4-0.5-0.9-0.8l-0.8-0.4\n c-0.7-0.3-1.3-0.8-1.3-1.8c0-1.1,1-1.9,2.3-1.9c0.7,0,1.5,0.3,2.1,0.9l-0.7,0.9c-0.4-0.3-0.8-0.5-1.3-0.5s-0.8,0.2-0.8,0.6\n s0.4,0.5,1,0.8l0.8,0.3c0.8,0.3,1.3,0.8,1.3,1.8c0,1.1-0.9,2-2.5,2C71.2,504.7,70.3,504.4,69.6,503.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,497.6H77v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9s-0.6,0.2-0.9,0.5v3.3h-1.5L75.5,497.6L75.5,497.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M80.9,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H84l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C81.5,504.7,80.9,504,80.9,503.2z\n M83.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C83.3,503.6,83.5,503.4,83.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M86.4,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.4,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H90.4z M93.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C93.2,503.5,93.6,503.1,93.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M98.3,498.1h2.2c1.3,0,2.4,0.4,2.4,1.6c0,0.6-0.3,1.2-0.8,1.4l0,0c0.7,0.2,1.2,0.7,1.2,1.5\n c0,1.3-1.1,1.9-2.5,1.9h-2.4L98.3,498.1L98.3,498.1z M100.4,500.7c0.7,0,1-0.3,1-0.8s-0.3-0.7-1-0.7h-0.7v1.5H100.4z\n M100.6,503.4c0.8,0,1.2-0.3,1.2-0.9s-0.4-0.8-1.2-0.8h-0.8v1.7L100.6,503.4L100.6,503.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M104.2,503v-5.5h1.5v5.5c0,0.3,0.1,0.4,0.3,0.4c0.1,0,0.1,0,0.2,0l0.2,1.1c-0.2,0.1-0.4,0.1-0.7,0.1\n C104.5,504.7,104.2,504,104.2,503z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107,502.7v-3.1h1.5v2.9c0,0.7,0.2,0.9,0.6,0.9s0.6-0.2,0.9-0.5v-3.3h1.5v5h-1.2l-0.1-0.7l0,0\n c-0.4,0.5-0.9,0.8-1.6,0.8C107.5,504.7,107,503.9,107,502.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.5,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C113.5,504.7,112.5,503.7,112.5,502.1z M115.7,501.6\n c0-0.5-0.2-0.9-0.8-0.9c-0.5,0-0.9,0.3-1,0.9H115.7z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,510H71v2.7h3V510h0.8v6.6H74v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M76.2,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5H77c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C77.3,516.7,76.2,515.7,76.2,514.2z M79.6,513.8c0-1-0.4-1.5-1.2-1.5\n c-0.7,0-1.3,0.5-1.4,1.5H79.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.4,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9l-1.5,2.4\n l1.6,2.4H84l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1h-0.9L82.4,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M85.8,512.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,513.1,85.8,512.8,85.8,512.5z M85.8,516.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C86.1,516.7,85.8,516.4,85.8,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M90.8,514.5H90V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8H93l0.2-1.8h0.5l-0.2,1.8h0.8v0.6h-0.9\n l-0.2,1.5H94v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L90.8,514.5z M92.7,514l0.2-1.5h-1.3l-0.2,1.5H92.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M94.9,515.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V513\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C95.9,516.7,95.3,516.3,94.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.5,515.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L100.5,515.5z M103.2,512.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4s0.4,1.3,1.2,1.3C102.3,513.5,102.8,513.2,103.2,512.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M105.1,513.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C106.3,516.7,105.1,515.4,105.1,513.3\n z\"/\u003e\n \u003cpath class=\"st10\" d=\"M110.6,516.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9c0,1.2-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L110.6,516.1L110.6,516.1z\"\n /\u003e\n \u003cpath class=\"st10\" d=\"M116.1,510h1.6c2,0,3.1,1.2,3.1,3.2c0,2.1-1.1,3.3-3.1,3.3H116L116.1,510L116.1,510z M117.7,515.9\n c1.5,0,2.3-1,2.3-2.6c0-1.6-0.8-2.6-2.3-2.6H117v5.2H117.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C123.2,514.2,123.7,512.7,125,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M73.8,528.6l-1.6-2.8H71v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L73.8,528.6\n L73.8,528.6z M71,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2H71V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.5,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C76.7,528.7,75.5,527.4,75.5,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82,522h2c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6c0,1.3-1,1.9-2.5,1.9h-2\n V522z M83.8,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H83.8z M84,527.9c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2\n h-1.1v2.5H84z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.6,524.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S87.6,524.8,87.6,524.5z\n M87.6,528.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C87.9,528.7,87.6,528.4,87.6,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M91.7,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C92.8,528.7,92.2,528.3,91.7,527.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M100.1,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C98.3,526.2,98.8,524.7,100.1,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M101.9,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L101.9,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.7,527.9h1.5v-4.7H107v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L106.7,527.9L106.7,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M111.9,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L111.9,527.5z M114.6,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C113.6,525.5,114.1,525.2,114.6,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M120.5,526.8h-0.9v1.8h-0.8v-1.8H116v-0.5l2.7-4.1h0.9v4h0.9V526.8z M118.9,526.2v-1.8c0-0.3,0-0.9,0-1.2\n l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V526.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M121.3,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L121.3,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M125.7,528.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L125.7,528.1L125.7,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.1,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H131L131.1,527.9L131.1,527.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M135.5,527.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C136.6,528.7,135.9,528.3,135.5,527.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M69.8,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C71,540.7,69.8,539.4,69.8,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.9,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H75.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M84.2,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4L86,534h1l-2,4v2.5h-0.8\n V538z\"/\u003e\n \u003cpath class=\"st10\" d=\"M87.9,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1h-0.9l-2-3.4l-1.1,1.3v2.1h-0.8V534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M93.4,536.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,537.1,93.4,536.8,93.4,536.5z M93.4,540.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C93.7,540.7,93.4,540.4,93.4,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.7,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C98.6,540.7,97.7,540,97.7,538.9z M101,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C100.5,540.1,101,539.6,101,539z M100.9,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C100.6,536.7,100.9,536.3,100.9,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M106.9,538.8H106v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6H106.9z M105.3,538.2v-1.8\n c0-0.3,0-0.9,0.1-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h1.9V538.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.7,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L107.7,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M112.1,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S112.1,539.5,112.1,537.4z M115.4,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C114.9,540,115.4,539.2,115.4,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M117.1,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L117.1,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M122,539.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7H122V539.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M126.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C127.4,540.7,126.5,540,126.5,538.9z M129.9,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C129.4,540.1,129.9,539.6,129.9,539z M129.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C129.5,536.7,129.7,536.3,129.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M131.6,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L131.6,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M136,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S136,539.5,136,537.4z M139.3,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C138.8,540,139.3,539.2,139.3,537.4z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M70.2,546H72c1.5,0,2.5,0.5,2.5,1.9s-1,2-2.4,2H71v2.6h-0.8V546z M72,549.3c1.1,0,1.7-0.4,1.7-1.3\n c0-0.9-0.6-1.3-1.7-1.3h-1v2.6H72z\"/\u003e\n \u003cpath class=\"st10\" d=\"M75.8,546h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V549\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6H76V546H75.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M82.6,551.7l0.5-0.6c0.5,0.5,1.1,0.8,1.8,0.8c0.9,0,1.4-0.4,1.4-1.1c0-0.7-0.5-0.9-1.1-1.2l-0.9-0.4\n c-0.6-0.3-1.3-0.7-1.3-1.7s0.9-1.7,2.1-1.7c0.8,0,1.5,0.3,1.9,0.8l-0.4,0.5c-0.4-0.4-0.9-0.6-1.5-0.6c-0.7,0-1.2,0.4-1.2,1\n s0.6,0.9,1.1,1.1l0.9,0.4c0.8,0.3,1.3,0.8,1.3,1.7c0,1-0.8,1.9-2.2,1.9C84,552.7,83.2,552.3,82.6,551.7z\"/\u003e\n \u003cpath class=\"st10\" d=\"M88.2,548.5c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,549.1,88.2,548.8,88.2,548.5z M88.2,552.1c0-0.4,0.3-0.6,0.6-0.6c0.3,0,0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C88.4,552.7,88.2,552.4,88.2,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M92.3,551.8l0.4-0.5c0.4,0.4,0.9,0.8,1.6,0.8c0.8,0,1.3-0.5,1.3-1.2c0-0.8-0.5-1.3-2-1.3V549\n c1.4,0,1.8-0.5,1.8-1.2c0-0.6-0.4-1-1.1-1c-0.5,0-1,0.3-1.4,0.7l-0.4-0.5c0.5-0.5,1.1-0.8,1.8-0.8c1.1,0,1.9,0.6,1.9,1.6\n c0,0.8-0.5,1.3-1.2,1.5l0,0c0.8,0.2,1.4,0.7,1.4,1.6c0,1.1-0.9,1.8-2.1,1.8C93.4,552.7,92.7,552.3,92.3,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M97.8,551.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L97.8,551.9L97.8,551.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M102.4,552.1c1.9-1.9,3-3.1,3-4.1c0-0.7-0.4-1.2-1.2-1.2c-0.5,0-1,0.3-1.4,0.8l-0.5-0.5\n c0.5-0.6,1.1-1,1.9-1c1.2,0,1.9,0.7,1.9,1.9s-1.1,2.4-2.6,4c0.3,0,0.7-0.1,1.1-0.1h1.8v0.7h-4.1L102.4,552.1L102.4,552.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M107.2,551.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C108.2,552.7,107.6,552.3,107.2,551.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M114.4,549.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C115.6,552.7,114.4,551.4,114.4,549.3\n z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M183.9,501.4c0-2.2,1.4-3.4,3.2-3.4c0.9,0,1.6,0.4,2,0.8l-0.8,0.9c-0.3-0.3-0.7-0.5-1.2-0.5\n c-1,0-1.7,0.8-1.7,2.1c0,1.3,0.6,2.1,1.8,2.1c0.3,0,0.5-0.1,0.7-0.2v-1.1h-1.1v-1.2h2.4v3c-0.4,0.4-1.2,0.8-2.1,0.8\n C185.3,504.7,183.9,503.5,183.9,501.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.5,499.6h1.2l0.1,0.9l0,0c0.4-0.7,0.9-1,1.4-1c0.3,0,0.4,0,0.6,0.1l-0.2,1.3c-0.2,0-0.3-0.1-0.5-0.1\n c-0.4,0-0.8,0.2-1.1,0.9v2.9h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M194,503.2c0-1,0.8-1.6,2.8-1.8c0-0.4-0.2-0.7-0.8-0.7c-0.4,0-0.8,0.2-1.3,0.5l-0.5-1\n c0.6-0.4,1.3-0.6,2.1-0.6c1.3,0,2,0.7,2,2.2v2.8H197l-0.1-0.5l0,0c-0.4,0.4-0.9,0.6-1.4,0.6C194.5,504.7,194,504,194,503.2z\n M196.7,503.1v-0.9c-1,0.1-1.4,0.4-1.4,0.8c0,0.3,0.2,0.5,0.6,0.5C196.3,503.6,196.5,503.4,196.7,503.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M199.5,499.6h1.2l0.1,0.5l0,0c0.4-0.3,0.9-0.6,1.4-0.6c1.2,0,1.9,1,1.9,2.5c0,1.7-1,2.7-2.1,2.7\n c-0.4,0-0.8-0.2-1.2-0.5v0.8v1.4h-1.5v-6.8H199.5z M202.6,502c0-0.9-0.3-1.3-0.9-1.3c-0.3,0-0.6,0.1-0.8,0.5v2\n c0.3,0.2,0.5,0.3,0.8,0.3C202.2,503.5,202.6,503.1,202.6,502z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205.2,497.6h1.5v1.7l-0.1,0.9c0.4-0.3,0.9-0.7,1.5-0.7c1.1,0,1.5,0.8,1.5,2v3.1h-1.5v-2.9\n c0-0.7-0.2-0.9-0.6-0.9c-0.4,0-0.6,0.2-0.9,0.5v3.3h-1.5v-7H205.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M210.8,498.1c0-0.5,0.4-0.8,0.8-0.8c0.5,0,0.8,0.3,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8\n C211.1,498.9,210.8,498.6,210.8,498.1z M210.9,499.6h1.5v5h-1.5V499.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.9,502.8v-2h-0.7v-1.1l0.8-0.1l0.2-1.3h1.2v1.3h1.2v1.1h-1.2v2c0,0.6,0.2,0.8,0.6,0.8\n c0.2,0,0.3,0,0.5-0.1l0.2,1.1c-0.3,0.1-0.6,0.2-1.1,0.2C214.3,504.7,213.9,503.9,213.9,502.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217,502.1c0-1.6,1.1-2.6,2.3-2.6c1.4,0,2.1,1,2.1,2.4c0,0.3,0,0.5-0.1,0.6h-3c0.1,0.7,0.6,1,1.3,1\n c0.4,0,0.7-0.1,1.1-0.3l0.5,0.9c-0.5,0.3-1.2,0.6-1.8,0.6C218.1,504.7,217,503.7,217,502.1z M220.2,501.6c0-0.5-0.2-0.9-0.8-0.9\n c-0.5,0-0.9,0.3-1,0.9H220.2z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184.3,510h0.8v2.7h3V510h0.8v6.6h-0.8v-3.1h-3v3.1h-0.8V510z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.4,514.2c0-1.6,1.1-2.6,2.2-2.6c1.2,0,1.9,0.9,1.9,2.3c0,0.2,0,0.3,0,0.5h-3.3c0.1,1,0.7,1.7,1.6,1.7\n c0.5,0,0.8-0.1,1.2-0.4l0.3,0.5c-0.4,0.3-0.9,0.5-1.6,0.5C191.5,516.7,190.4,515.7,190.4,514.2z M193.8,513.8\n c0-1-0.4-1.5-1.2-1.5c-0.7,0-1.3,0.5-1.4,1.5H193.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.6,514l-1.5-2.3h0.9l0.6,1.1c0.1,0.3,0.3,0.5,0.5,0.8l0,0c0.1-0.3,0.3-0.5,0.4-0.8l0.6-1.1h0.9\n l-1.5,2.4l1.6,2.4h-0.9l-0.7-1.1c-0.2-0.3-0.4-0.6-0.5-0.9l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-0.7,1.1H195L196.6,514z\"/\u003e\n \u003cpath class=\"st10\" d=\"M200,512.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,513.1,200,512.8,200,512.5z\n M200,516.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C200.2,516.7,200,516.4,200,516.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M205,514.5h-0.8V514h0.9l0.2-1.5h-0.8v-0.6h0.9l0.2-1.8h0.5l-0.2,1.8h1.3l0.2-1.8h0.5l-0.2,1.8h0.8v0.6\n h-0.9l-0.2,1.5h0.8v0.6h-0.9l-0.2,2h-0.5l0.2-2h-1.3l-0.2,2h-0.5L205,514.5z M206.9,514l0.2-1.5h-1.3l-0.2,1.5H206.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M213.5,514.8h-0.9v1.8h-0.8v-1.8H209v-0.5l2.7-4.1h0.9v4h0.9L213.5,514.8L213.5,514.8z M211.8,514.2v-1.8\n c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M217.7,511.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L217.7,511.3z M217.5,514.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C217.1,516,217.5,515.5,217.5,514.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L223.4,514.8L223.4,514.8z M221.8,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M223.9,515.8l0.4-0.5c0.4,0.4,0.9,0.7,1.6,0.7c0.8,0,1.4-0.6,1.4-1.5s-0.5-1.4-1.4-1.4\n c-0.4,0-0.7,0.1-1.1,0.4l-0.4-0.3l0.2-3.1h3.2v0.7h-2.5l-0.2,1.9c0.3-0.2,0.6-0.3,1-0.3c1.1,0,2,0.6,2,2s-1,2.2-2.1,2.2\n C225,516.7,224.4,516.3,223.9,515.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M233.4,514.8h-0.9v1.8h-0.8v-1.8h-2.9v-0.5l2.7-4.1h0.9v4h0.9v0.6L233.4,514.8L233.4,514.8z M231.7,514.2\n v-1.8c0-0.3,0-0.9,0-1.2l0,0c-0.2,0.3-0.3,0.6-0.5,0.9l-1.5,2.2h2V514.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M237.3,510.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C235.5,514.2,236,512.7,237.3,510.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M187.9,528.6l-1.6-2.8h-1.2v2.8h-0.8V522h2c1.3,0,2.3,0.5,2.3,1.8c0,1-0.6,1.6-1.5,1.9l1.7,2.9L187.9,528.6\n L187.9,528.6z M185.2,525.1h1.1c1,0,1.6-0.4,1.6-1.3c0-0.9-0.6-1.2-1.6-1.2h-1.1V525.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M189.7,525.3c0-2.1,1.3-3.4,3-3.4c0.9,0,1.5,0.4,1.9,0.8l-0.5,0.5c-0.3-0.3-0.8-0.6-1.4-0.6\n c-1.3,0-2.2,1-2.2,2.6s0.8,2.7,2.2,2.7c0.5,0,0.9-0.2,1.2-0.4v-1.7h-1.4v-0.7h2.1v2.8c-0.4,0.4-1.1,0.8-2,0.8\n C190.9,528.7,189.7,527.4,189.7,525.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M196.2,522h1.9c1.3,0,2.2,0.5,2.2,1.6c0,0.6-0.3,1.2-1,1.4l0,0c0.8,0.2,1.3,0.7,1.3,1.6\n c0,1.3-1,1.9-2.5,1.9H196V522H196.2z M198,524.8c1.1,0,1.6-0.4,1.6-1.1c0-0.8-0.5-1-1.5-1h-1v2.1H198z M198.2,527.9\n c1.1,0,1.8-0.4,1.8-1.3c0-0.8-0.6-1.2-1.8-1.2H197v2.5H198.2z\"/\u003e\n \u003cpath class=\"st10\" d=\"M201.8,524.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6S201.8,524.8,201.8,524.5z\n M201.8,528.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6C202.1,528.7,201.8,528.4,201.8,528.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M209.3,522.9h-3.2v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C207.6,526.2,208,524.7,209.3,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.1,525.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C211.9,528.7,211.1,527.5,211.1,525.4z\n M214.4,525.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C213.9,528,214.4,527.2,214.4,525.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.1,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.1,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M224.1,523.3c-0.3-0.3-0.6-0.5-1-0.5c-0.9,0-1.6,0.7-1.7,2.7c0.4-0.5,1-0.8,1.5-0.8c1.1,0,1.8,0.7,1.8,2\n c0,1.2-0.9,2-1.9,2c-1.2,0-2.2-1-2.2-3.1c0-2.6,1.2-3.5,2.4-3.5c0.7,0,1.2,0.3,1.5,0.7L224.1,523.3z M223.9,526.6\n c0-0.8-0.4-1.3-1.2-1.3c-0.4,0-0.9,0.2-1.3,0.8c0.1,1.2,0.6,1.9,1.4,1.9C223.4,528,223.9,527.5,223.9,526.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226,527.5c0.3,0.3,0.6,0.5,1,0.5c0.9,0,1.7-0.7,1.7-2.7c-0.4,0.5-1,0.8-1.5,0.8c-1.1,0-1.8-0.7-1.8-2\n c0-1.2,0.9-2,1.9-2c1.3,0,2.2,1,2.2,3.1c0,2.6-1.2,3.5-2.4,3.5c-0.7,0-1.2-0.3-1.5-0.7L226,527.5z M228.8,524.6\n c-0.1-1.2-0.6-1.9-1.4-1.9c-0.6,0-1.1,0.6-1.1,1.4c0,0.8,0.4,1.3,1.2,1.3C227.8,525.5,228.3,525.2,228.8,524.6z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.5,529.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L230.5,529.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M238.2,522.9H235v-0.7h4.1v0.5c-1.5,1.9-1.8,3.4-1.9,5.9h-0.8C236.4,526.2,236.9,524.7,238.2,522.9z\"/\u003e\n \u003cpath class=\"st10\" d=\"M240.3,527.9h1.5v-4.7h-1.2v-0.5c0.6-0.1,1-0.3,1.3-0.5h0.6v5.7h1.3v0.7h-3.6L240.3,527.9L240.3,527.9z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M184,537.3c0-2.1,1.2-3.4,2.9-3.4c0.8,0,1.4,0.4,1.8,0.8l-0.4,0.5c-0.3-0.4-0.8-0.6-1.3-0.6\n c-1.2,0-2.1,1-2.1,2.6s0.8,2.7,2,2.7c0.6,0,1.1-0.3,1.5-0.7l0.5,0.5c-0.5,0.6-1.2,0.9-2,0.9C185.2,540.7,184,539.4,184,537.3z\"/\u003e\n \u003cpath class=\"st10\" d=\"M190.1,534h1l1.3,3.5c0.2,0.5,0.3,0.9,0.5,1.4l0,0c0.2-0.4,0.3-0.9,0.4-1.4l1.2-3.5h1v6.6h-0.8V537\n c0-0.6,0.1-1.4,0.1-1.9l0,0l-0.5,1.5l-1.2,3.4h-0.5l-1.2-3.4l-0.5-1.5l0,0c0,0.6,0.1,1.4,0.1,1.9v3.6h-0.7V534H190.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M198.4,538l-2-4h0.9l0.8,1.8c0.2,0.5,0.4,0.9,0.6,1.4l0,0c0.2-0.5,0.5-0.9,0.7-1.4l0.8-1.8h0.9l-2,4v2.5\n h-0.8V538H198.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M202.1,534h0.8v3.3l0,0l2.7-3.3h0.9l-2,2.5l2.4,4.1H206l-2-3.4l-1.1,1.3v2.1h-0.8L202.1,534L202.1,534z\"/\u003e\n \u003cpath class=\"st10\" d=\"M207.6,536.5c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,537.1,207.6,536.8,207.6,536.5z M207.6,540.1c0-0.4,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6c0,0.4-0.3,0.6-0.6,0.6\n C207.9,540.7,207.6,540.4,207.6,540.1z\"/\u003e\n \u003cpath class=\"st10\" d=\"M211.9,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S211.9,539.5,211.9,537.4z M215.2,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C214.7,540,215.2,539.2,215.2,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M216.9,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L216.9,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M221.4,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3C222.1,540.7,221.4,539.5,221.4,537.4z\n M224.7,537.4c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C224.2,540,224.7,539.2,224.7,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M226.4,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L226.4,541.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M230.8,537.4c0-2.1,0.8-3.3,2-3.3c1.3,0,2,1.1,2,3.3s-0.8,3.3-2,3.3S230.8,539.5,230.8,537.4z M234.1,537.4\n c0-1.9-0.5-2.6-1.2-2.6s-1.2,0.8-1.2,2.6s0.5,2.7,1.2,2.7C233.6,540,234.1,539.2,234.1,537.4z\"/\u003e\n \u003cpath class=\"st10\" d=\"M235.8,541.8c0.6-0.2,0.9-0.7,0.9-1.2h-0.1c-0.3,0-0.6-0.2-0.6-0.6c0-0.4,0.3-0.6,0.6-0.6\n c0.4,0,0.7,0.4,0.7,1c0,0.9-0.5,1.5-1.3,1.9L235.8,541.8z\"/\u003e\n \u003c/g\u003e\n \u003cg\u003e\n \u003cpath class=\"st10\" d=\"M239.5,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C240.3,540.7,239.5,540,239.5,538.9z M242.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C242.3,540.1,242.8,539.6,242.8,539z M242.7,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C242.4,536.7,242.7,536.3,242.7,535.8z\"/\u003e\n \u003cpath class=\"st10\" d=\"M244.4,538.9c0-0.8,0.6-1.4,1.2-1.7l0,0c-0.5-0.3-0.9-0.8-0.9-1.5c0-1,0.8-1.6,1.8-1.6\n c1.1,0,1.8,0.7,1.8,1.7c0,0.7-0.5,1.2-0.9,1.5l0,0c0.6,0.3,1.1,0.8,1.1,1.6c0,0.9-0.8,1.7-2.1,1.7\n C245.3,540.7,244.4,540,244.4,538.9z M247.8,539c0-0.8-0.8-1.1-1.7-1.5c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.6,1.2,1.4,1.2\n C247.3,540.1,247.8,539.6,247.8,539z M247.6,535.8c0-0.6-0.4-1.1-1.1-1.1c-0.6,0-1,0.4-1,1c0,0.8,0.7,1.1,1.5,1.4\n C247.4,536.7,247.6,536.3,247.6,535.8z\"/\u003e\n \u003c/g\u003e\n \u003c/g\u003e\n \u003crect x=\"69.3\" y=\"476.6\" class=\"st11\" width=\"57.1\" height=\"13.5\"/\u003e\n \u003crect x=\"183.4\" y=\"476.6\" class=\"st12\" width=\"57.1\" height=\"13.5\"/\u003e\n\u003c/g\u003e\n\u003cg\u003e\n \u003cg\u003e\n \u003cpath class=\"st13\" d=\"M124.7,72.9h30.1V39.6c0-9.3-4.4-14-13.4-14H138c-8.9,0-13.4,4.7-13.4,14L124.7,72.9L124.7,72.9z\n M124.7,94.2l0.1,36.6c0,9.3,4.5,13.9,13.4,13.9h3.9c8.9,0,13.4-4.6,13.4-13.9v-18H176v17.1c0,23.5-11.4,35.5-34,35.5h-4.5\n c-22.6,0-34-11.9-34-32.7V43.2c0-26.3,11.4-38.2,34-38.2h4.5c22.6,0,34,11.9,34,35.4l-0.1,53.7L124.7,94.2L124.7,94.2z\"/\u003e\n \u003cpath class=\"st13\" d=\"M210.9,136.3c5.8,5.2,12.5,8.1,19.5,8.1c7.8,0,12.3-3.8,12.3-12.8v-93c0-9-4.5-12.8-12.3-12.8\n c-7,0-13.7,2.9-19.5,8.1V136.3z M189.7,6.8h21.2V17c5-5.5,13.6-11.9,25.9-11.9c18.1,0,27,12.5,27,31.1v98.2\n c0,18.6-8.9,31.1-27,31.1c-12.3,0-20.9-6.1-25.9-11.3v50.6h-21.2V6.8z\"/\u003e\n \u003cpath class=\"st13\" d=\"M327.3,137.2V85.5l-19.2,7.6c-7.8,3.2-10.3,7.3-10.3,16.3v23.8c0,7.6,3.6,11.3,10.3,11.3\n C314.5,144.5,320.4,142.2,327.3,137.2 M276.6,109c0-19.5,6.1-27.3,22.3-33.1l28.4-10.2V39.6c0-9.3-4.5-14.2-13.4-14.2h-3.4\n c-8.9,0-13.4,4.9-13.4,14.2v22.2h-20.6V40.5c0-23.5,11.4-35.4,34-35.4h4c22.6,0,34,11.9,34,35.4v123.2h-21.2v-9.9\n c-5.8,5.8-13.7,11.6-25.9,11.6c-17,0-24.8-10.2-24.8-27.6V109z\"/\u003e\n \u003cpath class=\"st13\" d=\"M434.1,163.7h-21.2V37.3c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8v129.9h-21.2V6.8h21.2V17\n c6.2-6.1,14.2-12,25.9-12c10.9,0,18.1,4.7,22,12.8C438.9,11.1,447.8,5,460,5c16.4,0,24.8,10.5,24.8,27.6v131h-21.2V37.3\n c0-7.8-3.6-11.3-10-11.3c-5.8,0-12,2.3-19.5,7.8L434.1,163.7L434.1,163.7z\"/\u003e\n \u003c/g\u003e\n \u003cpolygon class=\"st14\" points=\"22,75.2 22,96.4 76.4,149.7 76.4,120.2 40.8,85.5 76.4,50.1 76.4,21.2 \"/\u003e\n \u003cpolygon class=\"st14\" points=\"511.7,50.1 547.3,85.5 511.7,120.3 511.7,149.7 566.1,96.4 566.1,75.2 511.7,21.2 \"/\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"591\" height=\"208\" viewBox=\"0 0 591 208\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M124.7 72.9H154.8V39.6C154.8 30.3 150.4 25.6 141.4 25.6H138C129.1 25.6 124.6 30.3 124.6 39.6L124.7 72.9ZM124.7 94.2L124.8 130.8C124.8 140.1 129.3 144.7 138.2 144.7H142.1C151 144.7 155.5 140.1 155.5 130.8V112.8H176V129.9C176 153.4 164.6 165.4 142 165.4H137.5C114.9 165.4 103.5 153.5 103.5 132.7V43.2C103.5 16.9 114.9 5 137.5 5H142C164.6 5 176 16.9 176 40.4L175.9 94.1L124.7 94.2Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M210.899 136.302C216.699 141.502 223.399 144.402 230.399 144.402C238.199 144.402 242.699 140.602 242.699 131.602V38.6016C242.699 29.6016 238.199 25.8016 230.399 25.8016C223.399 25.8016 216.699 28.7016 210.899 33.9016V136.302ZM189.699 6.80156H210.899V17.0016C215.899 11.5016 224.499 5.10156 236.799 5.10156C254.899 5.10156 263.799 17.6016 263.799 36.2016V134.402C263.799 153.002 254.899 165.502 236.799 165.502C224.499 165.502 215.899 159.402 210.899 154.202V204.802H189.699V6.80156Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M327.3 137.202V85.5016L308.1 93.1016C300.3 96.3016 297.8 100.402 297.8 109.402V133.202C297.8 140.802 301.4 144.502 308.1 144.502C314.5 144.502 320.4 142.202 327.3 137.202ZM276.6 109.002C276.6 89.5016 282.7 81.7016 298.9 75.9016L327.3 65.7016V39.6016C327.3 30.3016 322.8 25.4016 313.9 25.4016H310.5C301.6 25.4016 297.1 30.3016 297.1 39.6016V61.8016H276.5V40.5016C276.5 17.0016 287.9 5.10156 310.5 5.10156H314.5C337.1 5.10156 348.5 17.0016 348.5 40.5016V163.702H327.3V153.802C321.5 159.602 313.6 165.402 301.4 165.402C284.4 165.402 276.6 155.202 276.6 137.802V109.002Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M434.099 163.7H412.899V37.3C412.899 29.5 409.299 26 402.899 26C397.099 26 390.899 28.3 383.399 33.8V163.7H362.199V6.8H383.399V17C389.599 10.9 397.599 5 409.299 5C420.199 5 427.399 9.7 431.299 17.8C438.899 11.1 447.799 5 459.999 5C476.399 5 484.799 15.5 484.799 32.6V163.6H463.599V37.3C463.599 29.5 459.999 26 453.599 26C447.799 26 441.599 28.3 434.099 33.8V163.7Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M22 75.1992V96.3992L76.4 149.699V120.199L40.8 85.4992L76.4 50.0992V21.1992L22 75.1992Z\" fill=\"#00ABCD\"/\u003e\n\u003cpath d=\"M511.699 50.0992L547.299 85.4992L511.699 120.299V149.699L566.099 96.3992V75.1992L511.699 21.1992V50.0992Z\" fill=\"#00ABCD\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GerritReplicationConfig", diff --git a/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json b/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json index 2a6a9b35abd..1c6a0718ae6 100644 --- a/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json +++ b/server/meshmodel/github-actions-runner-operator/2.8.1/v1.0.0/components/GithubActionRunner.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json index 1d5f49e320c..82279ee935d 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/HorizontalRunnerAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json index f7eaabbd066..b4d539783f1 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/Runner.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json index 5c9046e7e1b..41f0abfb914 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerDeployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json index f3d176b468c..88a0a818804 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerReplicaSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json index 31fd6a5c3c7..ab7b25afa6e 100644 --- a/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json +++ b/server/meshmodel/github-actions-runners/0.1.2/v1.0.0/components/RunnerSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#000000", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\"\u003e\u003cpath d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\tc-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\tc12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\tc-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\tc26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\tc4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\tC248.3,37.7,196,0,137.1,0L137.1,0z\"/\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"275\" height=\"268\" viewBox=\"0 0 275 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M137.1 0C61.4 0 0 61.3 0 136.9C0 196 37.8 248.4 93.8 267C100.6 268.3 103.1 264 103.1 260.4C103.1 257.1 103 248.5 102.9 237.1C64.8 245.4 56.8 218.7 56.8 218.7C50.6 202.9 41.6 198.7 41.6 198.7C29.2 190.2 42.5 190.4 42.5 190.4C56.2 191.4 63.5 204.5 63.5 204.5C75.7 225.4 95.6 219.4 103.4 215.9C104.6 207 108.2 201 112.1 197.6C81.7 194.1 49.7 182.4 49.7 129.9C49.5 116.3 54.5 103.1 63.8 93.1C62.4 89.6 57.7 75.7 65.1 56.8C65.1 56.8 76.6 53.1 102.8 70.8C114 67.7 125.5 66.2 137.1 66.2C148.7 66.3 160.2 67.8 171.4 70.8C197.6 53.1 209 56.8 209 56.8C216.5 75.7 211.8 89.6 210.4 93.1C219.7 103.1 224.7 116.3 224.5 129.9C224.5 182.5 192.5 194.1 162 197.5C166.9 201.7 171.3 210.1 171.3 222.9C171.3 241.2 171.1 256 171.1 260.5C171.1 264.2 173.6 268.4 180.5 267.1C252.3 243.1 291 165.4 267 93.6C248.3 37.7 196 0 137.1 0Z\" fill=\"black\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svgjs=\"http://svgjs.com/svgjs\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"512\" height=\"512\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"/\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"/\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json b/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json index f193bd4976a..cf1e7983965 100644 --- a/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json +++ b/server/meshmodel/gitlab-runner-operator/1.6.0/v1.0.0/components/Runner.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 380 380\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#e24329;}.cls-2{fill:#fc6d26;}.cls-3{fill:#fca326;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"LOGO\"\u003e\u003cpath class=\"cls-1\" d=\"M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M282.83,170.73l-.27-.69a88.3,88.3,0,0,0-35.15,15.8L190,229.25c19.55,14.79,36.57,27.64,36.57,27.64l40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z\"/\u003e\u003cpath class=\"cls-3\" d=\"M153.43,256.89l19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91S209.55,244,190,229.25C170.45,244,153.43,256.89,153.43,256.89Z\"/\u003e\u003cpath class=\"cls-2\" d=\"M132.58,185.84A88.19,88.19,0,0,0,97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82s17-12.85,36.57-27.64Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M282.829 170.728L282.559 170.038L256.419 101.818C255.888 100.481 254.946 99.347 253.729 98.5784C252.512 97.8228 251.092 97.4588 249.662 97.5357C248.231 97.6126 246.859 98.1266 245.729 99.0084C244.613 99.9154 243.803 101.145 243.409 102.528L225.759 156.528H154.289L136.639 102.528C136.257 101.137 135.445 99.9017 134.319 98.9984C133.19 98.1166 131.818 97.6026 130.387 97.5257C128.956 97.4488 127.537 97.8128 126.319 98.5684C125.106 99.3401 124.165 100.473 123.629 101.808L97.4394 169.998L97.1794 170.688C93.4164 180.52 92.952 191.309 95.856 201.428C98.7601 211.547 104.875 220.448 113.279 226.788L113.369 226.858L113.609 227.028L153.429 256.848L173.129 271.758L185.129 280.818C186.533 281.884 188.247 282.461 190.009 282.461C191.772 282.461 193.486 281.884 194.889 280.818L206.889 271.758L226.589 256.848L266.649 226.848L266.749 226.768C275.135 220.427 281.236 211.535 284.135 201.43C287.035 191.325 286.577 180.551 282.829 170.728Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M282.83 170.729L282.56 170.039C269.823 172.653 257.82 178.049 247.41 185.839L190 229.249C209.55 244.039 226.57 256.889 226.57 256.889L266.63 226.889L266.73 226.809C275.127 220.468 281.238 211.571 284.141 201.457C287.045 191.343 286.585 180.559 282.83 170.729Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M153.43 256.89L173.13 271.8L185.13 280.86C186.533 281.926 188.247 282.503 190.01 282.503C191.772 282.503 193.486 281.926 194.89 280.86L206.89 271.8L226.59 256.89C226.59 256.89 209.55 244 190 229.25C170.45 244 153.43 256.89 153.43 256.89Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M132.579 185.84C122.177 178.034 110.177 172.624 97.4394 170L97.1794 170.69C93.4164 180.522 92.952 191.311 95.856 201.43C98.7601 211.549 104.875 220.45 113.279 226.79L113.369 226.86L113.609 227.03L153.429 256.85C153.429 256.85 170.429 244 189.999 229.21L132.579 185.84Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 380 380\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"LOGO\"\u003e\u003cpath class=\"cls-1\" d=\"M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z\"/\u003e\u003c/g\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M282.829 170.728L282.559 170.038L256.419 101.818C255.888 100.481 254.946 99.347 253.729 98.5784C252.512 97.8228 251.092 97.4588 249.662 97.5357C248.231 97.6126 246.859 98.1266 245.729 99.0084C244.613 99.9154 243.803 101.145 243.409 102.528L225.759 156.528H154.289L136.639 102.528C136.257 101.137 135.445 99.9017 134.319 98.9984C133.19 98.1166 131.818 97.6026 130.387 97.5257C128.956 97.4488 127.537 97.8128 126.319 98.5684C125.106 99.3401 124.165 100.473 123.629 101.808L97.4394 169.998L97.1794 170.688C93.4164 180.52 92.952 191.309 95.856 201.428C98.7601 211.547 104.875 220.448 113.279 226.788L113.369 226.858L113.609 227.028L153.429 256.848L173.129 271.758L185.129 280.818C186.533 281.884 188.247 282.461 190.009 282.461C191.772 282.461 193.486 281.884 194.889 280.818L206.889 271.758L226.589 256.848L266.649 226.848L266.749 226.768C275.135 220.427 281.236 211.535 284.135 201.43C287.035 191.325 286.577 180.551 282.829 170.728Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Runner", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json index fa02f2ca17b..1ed615b6fd7 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Backend.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" }, "component": { "kind": "Backend", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json index 2e0ab8f4401..70e97d141df 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Defaults.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" }, "component": { "kind": "Defaults", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json index e31923d8c93..c9e93273f17 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Global.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#1988d9", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#1988d9\" /\u003e\u003cstop offset=\"0.9\" stop-color=\"#54aef0\" /\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0.1\" stop-color=\"#54aef0\" /\u003e\u003cstop offset=\"0.29\" stop-color=\"#4fabee\" /\u003e\u003cstop offset=\"0.51\" stop-color=\"#41a2e9\" /\u003e\u003cstop offset=\"0.74\" stop-color=\"#2a93e0\" /\u003e\u003cstop offset=\"0.88\" stop-color=\"#1988d9\" /\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003eIcon-identity-221\u003c/title\u003e\u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#50e6ff\" /\u003e\u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e\u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#53b1e0\" /\u003e\u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#9cebff\" /\u003e\u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg id=\"bdb56329-4717-4410-aa13-4505ecaa4e46\" xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 18 18\"\u003e \u003cdefs\u003e \u003clinearGradient id=\"ba2610c3-a45a-4e7e-a0c0-285cfd7e005d\" x1=\"13.25\" y1=\"13.02\" x2=\"8.62\" y2=\"4.25\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.9\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003clinearGradient id=\"bd8f618b-4f2f-4cb7-aff0-2fd2d211326d\" x1=\"11.26\" y1=\"10.47\" x2=\"14.46\" y2=\"15.99\" gradientUnits=\"userSpaceOnUse\"\u003e \u003cstop offset=\"0.1\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.29\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.51\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.74\" stop-color=\"#FFF\" /\u003e \u003cstop offset=\"0.88\" stop-color=\"#FFF\" /\u003e \u003c/linearGradient\u003e \u003c/defs\u003e \u003ctitle\u003eIcon-identity-221\u003c/title\u003e \u003cpolygon points=\"1.01 10.19 8.93 15.33 16.99 10.17 18 11.35 8.93 17.19 0 11.35 1.01 10.19\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"1.61 9.53 8.93 0.81 16.4 9.54 8.93 14.26 1.61 9.53\" fill=\"#fff\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 1.61 9.53 8.93 0.81\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 0.81 8.93 14.26 16.4 9.54 8.93 0.81\" fill=\"url(#ba2610c3-a45a-4e7e-a0c0-285cfd7e005d)\" /\u003e \u003cpolygon points=\"8.93 7.76 16.4 9.54 8.93 14.26 8.93 7.76\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 14.26 1.61 9.53 8.93 7.76 8.93 14.26\" fill=\"#FFF\" /\u003e \u003cpolygon points=\"8.93 17.19 18 11.35 16.99 10.17 8.93 15.33 8.93 17.19\" fill=\"url(#bd8f618b-4f2f-4cb7-aff0-2fd2d211326d)\" /\u003e \u003c/svg\u003e" }, "component": { "kind": "Global", diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json index 1627e291b49..99e9bd0faef 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRoute.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json index 0bb89f3bc32..0f915350f12 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteTCP.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json index 5f29b7176e9..52f29e23385 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/IngressRouteUDP.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json index 1ec5873b777..3947f75b1d4 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/Middleware.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json index 15c22857ee1..90925761bb4 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/MiddlewareTCP.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json index 19cbc932af1..fc11dfe477b 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/ServersTransport.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json index 4abc344fa33..1ed59095d6c 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSOption.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json index ccca9a072de..e2caa2e0a75 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TLSStore.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json index 9992d0fe6bd..d1b426f412f 100644 --- a/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json +++ b/server/meshmodel/gitlab/8.0.1/v1.0.0/components/TraefikService.json @@ -45,15 +45,17 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#1988d9", - "secondaryColor": "#54aef0", - "shape": "rectangle", + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M335.007 159.975L334.586 158.901L293.892 52.6984C293.065 50.6169 291.598 48.8511 289.705 47.6544C287.81 46.4781 285.6 45.9116 283.372 46.0313C281.145 46.151 279.008 46.9512 277.251 48.3239C275.512 49.7359 274.251 51.6493 273.639 53.8037L246.162 137.869H134.899L107.422 53.8037C106.826 51.6376 105.563 49.7146 103.811 48.3083C102.053 46.9356 99.916 46.1354 97.6888 46.0157C95.4617 45.896 93.2514 46.4626 91.3565 47.6389C89.467 48.8404 88.0023 50.6046 87.1688 52.6828L46.397 158.839L45.9922 159.913C40.1341 175.219 39.411 192.015 43.932 207.768C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045L164.229 317.256L182.91 331.36C185.095 333.02 187.764 333.918 190.507 333.918C193.251 333.918 195.919 333.02 198.104 331.36L216.786 317.256L247.454 294.045L309.818 247.342L309.974 247.217C323.028 237.345 332.526 223.503 337.04 207.771C341.554 192.039 340.84 175.267 335.007 159.975Z\" fill=\"#E24329\"/\u003e\n\u003cpath d=\"M335.007 159.976L334.587 158.902C314.758 162.972 296.073 171.371 279.866 183.499L190.492 251.078C220.927 274.103 247.423 294.107 247.423 294.107L309.788 247.404L309.943 247.28C323.016 237.408 332.528 223.557 337.049 207.812C341.569 192.067 340.853 175.279 335.007 159.976Z\" fill=\"#FC6D26\"/\u003e\n\u003cpath d=\"M133.561 294.107L164.229 317.319L182.91 331.423C185.095 333.082 187.764 333.98 190.507 333.98C193.251 333.98 195.919 333.082 198.104 331.423L216.786 317.319L247.454 294.107C247.454 294.107 220.927 274.041 190.492 251.078C160.057 274.041 133.561 294.107 133.561 294.107Z\" fill=\"#FCA326\"/\u003e\n\u003cpath d=\"M101.102 183.499C84.9083 171.346 66.2271 162.925 46.397 158.839L45.9922 159.914C40.1341 175.22 39.411 192.016 43.932 207.769C48.4529 223.522 57.9728 237.378 71.0562 247.248L71.1963 247.357L71.5699 247.622L133.561 294.045C133.561 294.045 160.026 274.04 190.492 251.016L101.102 183.499Z\" fill=\"#FC6D26\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", "svgWhite": "\u003csvg width=\"380\" height=\"380\" viewBox=\"0 0 380 380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M334.548 160L334.128 158.926L293.425 52.6998C292.597 50.6179 291.131 48.8517 289.237 47.6548C287.341 46.4782 285.131 45.9116 282.903 46.0313C280.675 46.151 278.538 46.9514 276.78 48.3244C275.041 49.7367 273.78 51.6506 273.167 53.8054L245.684 137.889H134.398L106.915 53.8054C106.319 51.6388 105.055 49.7154 103.303 48.3088C101.544 46.9358 99.4072 46.1355 97.1795 46.0157C94.9519 45.896 92.7412 46.4627 90.8458 47.6392C88.9559 48.841 87.4909 50.6056 86.6572 52.6842L45.8766 158.863L45.4718 159.938C39.6124 175.247 38.8892 192.047 43.4111 207.803C47.933 223.56 57.4549 237.419 70.5412 247.291L70.6813 247.4L71.055 247.665L133.059 294.098L163.734 317.314L182.419 331.422C184.605 333.081 187.274 333.98 190.018 333.98C192.762 333.98 195.431 333.081 197.617 331.422L216.302 317.314L246.977 294.098L309.355 247.385L309.51 247.26C322.567 237.386 332.067 223.541 336.582 207.806C341.097 192.071 340.383 175.295 334.548 160Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json index 6beda775855..31a65a66399 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiDefinition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json index 3a246d0ea33..dd7fd4ad982 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/ApiResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json index 2f39c81aa60..873464705a4 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/Application.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json b/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json index e87c21d56cf..4cdf3a5fca6 100644 --- a/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json +++ b/server/meshmodel/gko/0.13.1/v1.0.0/components/ManagementContext.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json index db9ed2fa600..1f0d4391819 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessLogRecord.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json index b3dc9f961fc..f46d0658065 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/AccessPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json index 20e69e1ce14..e96d0a9b006 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/CertificateVerification.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json index 41d88dc9b9f..36373e430d5 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Dashboard.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json index 360163fa771..062b94c5e98 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Destination.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json index 39f6ea14d52..139bfd4e1d7 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/IstioInstallation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json index 69c7ebd3cec..81b456b60d7 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/KubernetesCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json index c8dc523f9a6..9f1d8fe6fb5 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Mesh.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json index dc4d793bba7..dfb5389200b 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitClientConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json index 9bc6cfcd4d9..81fa6904508 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RateLimitServerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json index c9f321ddb06..5812d44f994 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Role.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json index 8036775bec2..c196b6bcbaa 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RoleBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json index 34efab522fe..5a9365301a1 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/RouteTable.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json index 11e2054386f..0f7e372bd89 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/ServiceDependency.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json index b888f758982..7f6a5c65c00 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Settings.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json index 6fd18a76730..9878433ae30 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/TrafficPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json index 1fcacf9dc04..324c21dc3e8 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualDestination.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json index cb57990a6ee..68078fcd611 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json index 3bfdd34b3d2..95d090f36a0 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualHost.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json index 80b4c693fd3..491179608ba 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/VirtualMesh.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json index 9bb315cfa67..4cba905b7d8 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/WasmDeployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json index 0ed3a2a71de..ca0de6eefc0 100644 --- a/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json +++ b/server/meshmodel/gloo-mesh/1.2.0-beta1/v1.0.0/components/Workload.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json index 00c43722aa0..31f5a449c80 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/AuthConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json index 6b1bd8391a6..2c87cf16cbe 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Gateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json index 746a49b2299..4ccb6cd83b6 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GatewayParameters.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json index 201c85cc5cf..e6af2391796 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/GraphQLApi.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json index 60856475b55..ea88a981b80 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/HttpListenerOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json index 10e181791d1..7e70669bd15 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/ListenerOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json index 3dfd01350b3..499d1c693aa 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableHttpGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json index bd4d6c6c4e0..aa9b47bd9c8 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/MatchableTcpGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "MatchableTcpGateway", diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json index 58be1265dad..1037da646fb 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Proxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json index 8850597a990..4d1ec5ad424 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RateLimitConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json index a5b4c62e243..2a261058283 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json index acff8edc376..329e859ea0c 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/RouteTable.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json index da153424cab..a699bc32d11 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Settings.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json index 4d55e2b6a12..f70d922e59b 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/Upstream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json index 2e6cd180792..c1fe8be238b 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/UpstreamGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json index 51338d98648..955c6dc4240 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualHostOption.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json index 79fc2a3e0e5..93f4904f6e4 100644 --- a/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json +++ b/server/meshmodel/gloo/1.17.0-rc1/v1.0.0/components/VirtualService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json index b3f0b80e432..abe79fb9cf7 100644 --- a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json +++ b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "VerticalPodAutoscaler", diff --git a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json index 26e0ae89b71..d896a90835d 100644 --- a/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json +++ b/server/meshmodel/goldilocks/8.0.1/v1.0.0/components/VerticalPodAutoscalerCheckpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" }, "component": { "kind": "VerticalPodAutoscalerCheckpoint", diff --git a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json index d4e1d5d446b..3b04e1d0907 100644 --- a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json +++ b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/KopfPeering.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json index 170ea4c48a4..7f65aa4f11c 100644 --- a/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json +++ b/server/meshmodel/gooddata-cn/3.10.0/v1.0.0/components/Organization.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json b/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json index 69969dfd691..25b61daf742 100644 --- a/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json +++ b/server/meshmodel/gotway/0.8.0/v1.0.0/components/IngressHTTP.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json index ac5ac52e3fe..97fd2d2ec18 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/ClusterPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json index 50343b139c1..92f9429da31 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NVIDIADriver.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json index 15de02def43..71b405c4d83 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeature.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json index a137cc2453f..0b1526cdf83 100644 --- a/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json +++ b/server/meshmodel/gpu-operator/24.3.0/v1.0.0/components/NodeFeatureRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json index 09a30d9414d..b2f1201ebd1 100644 --- a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/Grafana.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F15B2A", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"url(#paint0_linear_26641_8655)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8655\" x1=\"51.85\" y1=\"138.111\" x2=\"51.85\" y2=\"35.2585\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#FCEE1F\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_26641_8655\"\u003e\n\u003crect width=\"103.7\" height=\"112.7\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Grafana", diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json index 6023ad23af3..3b223842d4f 100644 --- a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaAlertRuleGroup.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#F15B2A", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "" }, "component": { "kind": "GrafanaAlertRuleGroup", diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json index 2efe74df1d3..89b2729ba5b 100644 --- a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaContactPoint.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#F15B2A", - "secondaryColor": "#00D3A9", + "primaryColor": "", + "secondaryColor": "", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "" }, "component": { "kind": "GrafanaContactPoint", diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json index 48212afda2f..7c5c4af6b46 100644 --- a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDashboard.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F15B2A", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"url(#paint0_linear_26641_8655)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8655\" x1=\"51.85\" y1=\"138.111\" x2=\"51.85\" y2=\"35.2585\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#FCEE1F\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_26641_8655\"\u003e\n\u003crect width=\"103.7\" height=\"112.7\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GrafanaDashboard", diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json index ddceea08953..ff5af0e9cde 100644 --- a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaDatasource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F15B2A", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"url(#paint0_linear_26641_8655)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8655\" x1=\"51.85\" y1=\"138.111\" x2=\"51.85\" y2=\"35.2585\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#FCEE1F\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_26641_8655\"\u003e\n\u003crect width=\"103.7\" height=\"112.7\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GrafanaDatasource", diff --git a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json index 83b8a794c9b..ef500730987 100644 --- a/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json +++ b/server/meshmodel/grafana-operator/4.4.5/v1.0.0/components/GrafanaFolder.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#F15B2A", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", + "subCategory": "", + "svgColor": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"url(#paint0_linear_26641_8655)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8655\" x1=\"51.85\" y1=\"138.111\" x2=\"51.85\" y2=\"35.2585\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#FCEE1F\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cclipPath id=\"clip0_26641_8655\"\u003e\n\u003crect width=\"103.7\" height=\"112.7\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"104\" height=\"113\" viewBox=\"0 0 104 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M103.5 49.9C103.3 48 103 45.8 102.4 43.4C101.8 41 100.8 38.4 99.5 35.6C98.1 32.9 96.4 30 94.1 27.3C93.2 26.2 92.2 25.2 91.2 24.1C92.8 17.8 89.3 12.3 89.3 12.3C83.2 11.9 79.4 14.2 78 15.2C77.8 15.1 77.5 15 77.3 14.9C76.3 14.5 75.2 14.1 74.1 13.7C73 13.4 71.9 13 70.8 12.8C69.7 12.5 68.5 12.3 67.3 12.1C67.1 12.1 66.9 12 66.7 12C64.1 3.6 56.5 0 56.5 0C47.8 5.6 46.1 13.1 46.1 13.1C46.1 13.1 46.1 13.3 46 13.5C45.5 13.6 45.1 13.8 44.6 13.9C44 14.1 43.3 14.3 42.7 14.6C42.1 14.9 41.4 15.1 40.8 15.4C39.5 16 38.3 16.6 37 17.3C35.8 18 34.6 18.7 33.5 19.5C33.3 19.4 33.2 19.3 33.2 19.3C21.5 14.8 11.1 20.2 11.1 20.2C10.2 32.7 15.8 40.5 16.9 41.9C16.6 42.7 16.4 43.4 16.1 44.2C15.2 47 14.6 49.9 14.2 52.9C14.1 53.3 14.1 53.8 14 54.2C3.2 59.5 0 70.5 0 70.5C9 80.9 19.6 81.5 19.6 81.5C20.9 83.9 22.5 86.2 24.2 88.3C24.9 89.2 25.7 90 26.5 90.9C23.2 100.3 27 108.2 27 108.2C37.1 108.6 43.7 103.8 45.1 102.7C46.1 103 47.1 103.3 48.1 103.6C51.2 104.4 54.4 104.9 57.5 105C58.3 105 59.1 105 59.9 105H60.3H60.6H61.1H61.6C66.3 111.8 74.7 112.7 74.7 112.7C80.6 106.4 81 100.3 81 98.9C81 98.9 81 98.9 81 98.8C81 98.7 81 98.6 81 98.6C81 98.5 81 98.4 81 98.3C82.2 97.4 83.4 96.5 84.6 95.5C87 93.4 89 90.9 90.8 88.3C91 88.1 91.1 87.8 91.3 87.6C98 88 102.7 83.4 102.7 83.4C101.6 76.4 97.6 73 96.8 72.4C96.8 72.4 96.8 72.4 96.7 72.3L96.6 72.2L96.5 72.1C96.5 71.7 96.6 71.3 96.6 70.8C96.7 70 96.7 69.3 96.7 68.5V67.9V67.6V67.5C96.7 67.3 96.7 67.4 96.7 67.3V66.8V66.2C96.7 66 96.7 65.8 96.7 65.6C96.7 65.4 96.7 65.2 96.6 65L96.5 64.4L96.4 63.8C96.3 63 96.1 62.3 96 61.5C95.3 58.5 94.1 55.6 92.6 53.1C91 50.5 89.1 48.3 86.9 46.3C84.7 44.4 82.3 42.8 79.7 41.7C77.1 40.5 74.5 39.8 71.8 39.5C70.5 39.3 69.1 39.3 67.8 39.3H67.3H67.2H67H66.8H66.3C66.1 39.3 65.9 39.3 65.8 39.3C65.1 39.4 64.4 39.5 63.8 39.6C61.1 40.1 58.6 41.1 56.4 42.4C54.2 43.7 52.3 45.4 50.7 47.3C49.1 49.2 47.9 51.2 47.1 53.4C46.3 55.5 45.8 57.8 45.7 59.9C45.7 60.4 45.7 61 45.7 61.5C45.7 61.6 45.7 61.8 45.7 61.9V62.3C45.7 62.6 45.7 62.8 45.8 63.1C45.9 64.2 46.1 65.2 46.4 66.2C47 68.2 47.9 70 49.1 71.6C50.3 73.2 51.6 74.4 53.1 75.4C54.6 76.4 56.1 77.1 57.7 77.6C59.3 78.1 60.8 78.3 62.2 78.2C62.4 78.2 62.6 78.2 62.7 78.2C62.8 78.2 62.9 78.2 63 78.2C63.1 78.2 63.2 78.2 63.3 78.2C63.5 78.2 63.6 78.2 63.8 78.2H63.9H64C64.1 78.2 64.2 78.2 64.3 78.2C64.5 78.2 64.7 78.1 64.8 78.1C65 78.1 65.1 78 65.3 78C65.6 77.9 66 77.8 66.3 77.7C66.9 77.5 67.5 77.2 68.1 77C68.7 76.7 69.2 76.4 69.6 76.1C69.7 76 69.9 75.9 70 75.8C70.5 75.4 70.6 74.7 70.2 74.2C69.8 73.8 69.2 73.7 68.7 73.9C68.6 74 68.5 74 68.3 74.1C67.9 74.3 67.4 74.5 67 74.6C66.5 74.7 66 74.9 65.5 75C65.2 75 65 75.1 64.7 75.1C64.6 75.1 64.4 75.1 64.3 75.1C64.2 75.1 64 75.1 63.9 75.1C63.8 75.1 63.6 75.1 63.5 75.1C63.3 75.1 63.2 75.1 63 75.1H62.9H62.8C62.7 75.1 62.7 75.1 62.6 75.1C62.5 75.1 62.3 75.1 62.2 75C61.1 74.8 59.9 74.5 58.8 74C57.7 73.5 56.6 72.8 55.7 71.9C54.7 71 53.9 70 53.2 68.8C52.5 67.6 52.1 66.3 51.9 65C51.8 64.3 51.7 63.6 51.8 62.9C51.8 62.7 51.8 62.5 51.8 62.3V62.2V62.1C51.8 62 51.8 61.9 51.8 61.8C51.8 61.4 51.9 61.1 52 60.7C52.5 57.7 54 54.8 56.3 52.6C56.9 52 57.5 51.5 58.2 51.1C58.9 50.6 59.6 50.2 60.3 49.9C61 49.6 61.8 49.3 62.6 49.1C63.4 48.9 64.2 48.7 65 48.7C65.4 48.7 65.8 48.6 66.2 48.6C66.3 48.6 66.4 48.6 66.5 48.6H66.8H67H67.1H67.4C68.3 48.7 69.2 48.8 70 49C71.7 49.4 73.4 50 75 50.9C78.2 52.7 80.9 55.4 82.5 58.7C83.3 60.3 83.9 62.1 84.2 64C84.3 64.5 84.3 64.9 84.4 65.4V65.7V66C84.4 66.1 84.4 66.2 84.4 66.3C84.4 66.4 84.4 66.5 84.4 66.6V66.9V67.2C84.4 67.4 84.4 67.8 84.4 68C84.4 68.5 84.3 69 84.3 69.5C84.2 70 84.2 70.5 84.1 71C84 71.5 83.9 72 83.8 72.5C83.6 73.5 83.2 74.4 82.9 75.4C82.2 77.3 81.2 79.1 80 80.7C77.6 84 74.3 86.7 70.6 88.4C68.7 89.2 66.8 89.9 64.8 90.2C63.8 90.4 62.8 90.5 61.8 90.5H61.6H61.4H61.1H60.6H60.3H60.2C59.7 90.5 59.1 90.5 58.6 90.4C56.4 90.2 54.3 89.8 52.2 89.2C50.1 88.6 48.1 87.8 46.2 86.8C42.4 84.8 39 81.9 36.3 78.6C35 76.9 33.8 75.1 32.8 73.2C31.8 71.3 31.1 69.3 30.5 67.3C29.9 65.3 29.6 63.2 29.5 61.1V60.7V60.6V60.5V60.3V60V59.9V59.8V59.6V59.1V59V58.8C29.5 58.5 29.5 58.3 29.5 58C29.5 57 29.6 55.9 29.8 54.8C29.9 53.7 30.1 52.7 30.3 51.6C30.5 50.5 30.8 49.5 31.1 48.4C31.7 46.3 32.4 44.3 33.3 42.4C35.1 38.6 37.4 35.2 40.1 32.5C40.8 31.8 41.5 31.2 42.3 30.6C42.6 30.3 43.3 29.7 44.1 29.2C44.9 28.7 45.7 28.2 46.6 27.8C47 27.6 47.4 27.4 47.9 27.2C48.1 27.1 48.3 27 48.6 26.9C48.8 26.8 49 26.7 49.3 26.6C50.2 26.2 51.1 25.9 52 25.6C52.2 25.5 52.5 25.5 52.7 25.4C52.9 25.3 53.2 25.3 53.4 25.2C53.9 25.1 54.3 25 54.8 24.8C55 24.7 55.3 24.7 55.5 24.6C55.7 24.6 56 24.5 56.2 24.5C56.4 24.5 56.7 24.4 56.9 24.4L57.3 24.3L57.7 24.2C57.9 24.2 58.2 24.1 58.4 24.1C58.7 24.1 58.9 24 59.2 24C59.4 24 59.8 23.9 60 23.9C60.2 23.9 60.3 23.9 60.5 23.8H60.8H61H61.2C61.5 23.8 61.7 23.8 62 23.7H62.4H62.5H62.7C62.9 23.7 63.2 23.7 63.4 23.7C64.3 23.7 65.2 23.7 66.1 23.7C67.9 23.8 69.7 24 71.4 24.3C74.8 24.9 78.1 26 81 27.5C83.9 28.9 86.6 30.7 88.8 32.6C88.9 32.7 89.1 32.8 89.2 33C89.3 33.1 89.5 33.2 89.6 33.4C89.9 33.6 90.1 33.9 90.4 34.1C90.7 34.3 90.9 34.6 91.2 34.8C91.4 35.1 91.7 35.3 91.9 35.6C92.9 36.6 93.8 37.7 94.6 38.7C96.2 40.8 97.5 42.9 98.5 44.9C98.6 45 98.6 45.1 98.7 45.3C98.8 45.4 98.8 45.5 98.9 45.7C99 45.9 99.1 46.2 99.3 46.4C99.4 46.6 99.5 46.9 99.6 47.1C99.7 47.3 99.8 47.6 99.9 47.8C100.3 48.7 100.6 49.6 100.9 50.5C101.4 51.9 101.7 53.1 102 54.1C102.1 54.5 102.5 54.8 102.9 54.8C103.4 54.8 103.7 54.4 103.7 53.9C103.6 52.7 103.6 51.4 103.5 49.9Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GrafanaFolder", diff --git a/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json b/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json index 7c4cee361d6..b2833529617 100644 --- a/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json +++ b/server/meshmodel/grafana-ui-server/2022.6.14/v1.0.0/components/GrafanaDashboard.json @@ -45,18 +45,20 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, - "primaryColor": "#F15B2A", + "primaryColor": "#00B39F", "secondaryColor": "#00D3A9", "shape": "circle", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:url(#SVGID_1_);}\n\u003c/style\u003e\n\u003clinearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"51.85\" y1=\"1069.5107\" x2=\"51.85\" y2=\"966.6585\" gradientTransform=\"matrix(1 0 0 1 0 -931.4)\"\u003e\n\t\u003cstop offset=\"0\" style=\"stop-color:#FCEE1F\"/\u003e\n\t\u003cstop offset=\"1\" style=\"stop-color:#F15B2A\"/\u003e\n\u003c/linearGradient\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n\tc-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n\tc-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n\ts0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n\tc-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n\tc-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n\tc1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n\tc3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n\tc0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n\tc6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n\tc0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n\tc-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n\tc-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n\tc-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n\tc0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n\ts0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n\tc0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n\tc-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n\tc-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n\tc-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n\tc0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n\tc0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n\tc0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n\tc0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n\tc-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n\tc-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n\tc-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n\tl0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n\tc1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n\tc0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n\tc0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n\tc0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n\tc0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n\tc0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n\tc1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n\tc0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n\tc0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e" }, "component": { "kind": "GrafanaDashboard", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json index 9922ddb8581..f2328176df3 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Instance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Instance", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json index 07f69b6de2c..b200be6eed3 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/InstanceChartRepository.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "InstanceChartRepository", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json index de72602bee2..c1035b1daf5 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Project.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Project", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json index 390cb5f6236..291824f925b 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Registry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Registry", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json index 6fb63b87ad5..7277548b090 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/Replication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Replication", diff --git a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json index 13afa6b0de5..1377544dbc0 100644 --- a/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json +++ b/server/meshmodel/harbor-operator/1.6.3/v1.0.0/components/User.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4b9b33", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"1.05 -1.95 359.41 361.66\"\u003e\u003cdefs\u003e\u003clinearGradient id=\"linear-gradient\" x1=\"264.79\" x2=\"267.27\" y1=\"952.39\" y2=\"952.39\" gradientTransform=\"matrix(30.43 0 0 -30.43 -7955.22 29285.75)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\".28\" stop-color=\"#60b932\"/\u003e\u003cstop offset=\"1\" stop-color=\"#367c34\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-2\" x1=\"263.77\" x2=\"266.26\" y1=\"955.65\" y2=\"955.65\" gradientTransform=\"matrix(27.21 0 0 -27.21 -7073.85 26169.41)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-3\" x1=\"263.28\" x2=\"265.76\" y1=\"953.74\" y2=\"953.74\" gradientTransform=\"matrix(25.75 0 0 -25.75 -6671.13 24812.23)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-4\" x1=\"263.77\" x2=\"266.25\" y1=\"953.2\" y2=\"953.2\" gradientTransform=\"matrix(27.1 0 0 -27.1 -7040.9 26102.49)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-5\" x1=\"262.73\" x2=\"265.21\" y1=\"954.34\" y2=\"954.34\" gradientTransform=\"matrix(24.4 0 0 -24.4 -6301.36 23521.97)\" xlink:href=\"#linear-gradient\"/\u003e\u003clinearGradient id=\"linear-gradient-6\" x1=\"272.14\" x2=\"274.62\" y1=\"955.15\" y2=\"955.15\" gradientTransform=\"scale(66.09 -66.09) rotate(36.52 1588.153 68.148)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4596d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-7\" x1=\"270.65\" x2=\"273.13\" y1=\"952.38\" y2=\"952.38\" gradientTransform=\"scale(77.8 -77.8) rotate(-11.54 -4587.209 1803.323)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".2\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003clinearGradient id=\"linear-gradient-8\" x1=\"270.97\" x2=\"273.45\" y1=\"953.75\" y2=\"953.75\" gradientTransform=\"scale(71.35 -71.35) rotate(10.23 5477.37 -1024.602)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#4194d7\"/\u003e\u003cstop offset=\".33\" stop-color=\"#4496d8\"/\u003e\u003cstop offset=\"1\" stop-color=\"#fff\"/\u003e\u003c/linearGradient\u003e\u003cclipPath id=\"clip-path\"\u003e\u003cpath d=\"M174.4 302.52l-68.65-30.26-3.83 43.21 75.5 23.98-3.02-36.93z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-2\"\u003e\u003cpath d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-3\"\u003e\u003cpath d=\"M108.14 245.28l63.88 28.16-.96-11.73-61.96-27.3-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-4\"\u003e\u003cpath d=\"M106.46 264.21l67.23 29.63-.96-11.72-65.31-28.78-.96 10.87z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-5\"\u003e\u003cpath d=\"M110.77 215.48l-.96 10.87 60.54 26.68-.95-11.72-58.63-25.83z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-6\"\u003e\u003cpath d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1.01-1.31-1.98-2.62-3.01-3.86z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-7\"\u003e\u003cpath d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cclipPath id=\"clip-path-8\"\u003e\u003cpath d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.5-2.48-.99-4.98-1.58-7.45z\" class=\"cls-1\"/\u003e\u003c/clipPath\u003e\u003cstyle\u003e.cls-1{fill:none}.cls-13{fill:#696566}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"g12\"\u003e\u003cpath id=\"path14\" fill=\"#fff\" d=\"M30.89 179a148.87 148.87 0 1 1 148.87 148.85A148.87 148.87 0 0 1 30.89 179\"/\u003e\u003cg id=\"g30\" clip-path=\"url(#clip-path)\"\u003e\u003cg id=\"g32\"\u003e\u003cpath id=\"path46\" fill=\"url(#linear-gradient)\" d=\"M174.4 302.52l-68.65-30.25-3.82 43.2 75.5 24-3-36.93\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g48\" clip-path=\"url(#clip-path-2)\"\u003e\u003cg id=\"g50\"\u003e\u003cpath id=\"path64\" fill=\"url(#linear-gradient-2)\" d=\"M119.19 135.38h38.55v32.89h-9.15v-14a10.13 10.13 0 1 0-20.26 0v14h-9.15zm-7.7 72l57.2 25.21-3.94-48.24h7.49v-16.08h-5.55v-32.89h5.55v-9.45l-30.86-30.19v-2.12a2.91 2.91 0 0 0-5.82 0v2.12l-30.86 30.19v9.45h5.56v32.89h-5.56v16.12h8.82l-2 23\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g66\" clip-path=\"url(#clip-path-3)\"\u003e\u003cg id=\"g68\"\u003e\u003cpath id=\"path82\" fill=\"url(#linear-gradient-3)\" d=\"M108.13 245.28L172 273.44l-1-11.72-62-27.31-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g84\" clip-path=\"url(#clip-path-4)\"\u003e\u003cg id=\"g86\"\u003e\u003cpath id=\"path100\" fill=\"url(#linear-gradient-4)\" d=\"M106.46 264.21l67.23 29.63-1-11.72-65.31-28.78-1 10.87\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g102\" clip-path=\"url(#clip-path-5)\"\u003e\u003cg id=\"g104\"\u003e\u003cpath id=\"path118\" fill=\"url(#linear-gradient-5)\" d=\"M110.77 215.48l-1 10.88L170.35 253l-1-11.72-58.62-25.83\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cpath id=\"path120\" d=\"M304.07 110.85l30.93-9.94c-.11-.22-.21-.45-.32-.66a174.41 174.41 0 0 0-18.55-28.83l-29.07 15a142.71 142.71 0 0 1 16.73 23.87c.1.17.18.35.27.53\" class=\"cls-13\"/\u003e\u003cpath id=\"path122\" d=\"M321.15 169.37l32.21 2.31a172.86 172.86 0 0 0-3-25.59l-32.5 1.11a141 141 0 0 1 3.25 22.17\" class=\"cls-13\"/\u003e\u003cpath id=\"path124\" d=\"M182 320.81c-78.2 0-141.83-63.62-141.83-141.82S103.82 37.16 182 37.16a140.93 140.93 0 0 1 76.3 22.34L280.85 36A172.86 172.86 0 0 0 182 5.11C86.15 5.11 8.15 83.11 8.15 179s78 173.85 173.85 173.85c81.9 0 150.69-57 169-133.32L320.62 209c-13.8 63.84-70.69 111.83-138.6 111.83\" class=\"cls-13\"/\u003e\u003cg id=\"g126\" clip-path=\"url(#clip-path-6)\"\u003e\u003cg id=\"g128\"\u003e\u003cpath id=\"path142\" fill=\"url(#linear-gradient-6)\" d=\"M313.13 67.59a175.31 175.31 0 0 0-29.75-28.13c-1.57-1.17-3.18-2.3-4.79-3.42L256 59.5l-82.34 85.63 113.41-58.68 29.07-15c-1-1.27-2-2.58-3-3.82\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g144\" clip-path=\"url(#clip-path-7)\"\u003e\u003cg id=\"g146\"\u003e\u003cpath id=\"path160\" fill=\"url(#linear-gradient-7)\" d=\"M353.59 177.61c0-2-.14-4-.22-5.93l-32.21-2.31-147.47-10.58L318.36 209l30.41 10.55c.09-.36.19-.71.28-1.08a173.65 173.65 0 0 0 4.57-39.47v-1.37\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"g162\" clip-path=\"url(#clip-path-8)\"\u003e\u003cg id=\"g164\"\u003e\u003cpath id=\"path178\" fill=\"url(#linear-gradient-8)\" d=\"M348.84 138.61a172.55 172.55 0 0 0-13.84-37.7l-30.94 9.94L175.92 152l142-4.83 32.5-1.11c-.48-2.51-1-5-1.56-7.48\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"360\" height=\"362\" viewBox=\"0 0 360 362\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M29.8398 180.949C29.8359 151.504 38.5636 122.72 54.9192 98.2355C71.2749 73.7513 94.5238 54.6671 121.726 43.3965C148.928 32.1258 178.861 29.1748 207.741 34.9167C236.62 40.6586 263.148 54.8356 283.97 75.6546C304.792 96.4736 318.972 123 324.718 151.878C330.464 180.757 327.517 210.691 316.25 237.894C304.983 265.098 285.902 288.349 261.42 304.708C236.938 321.067 208.154 329.799 178.71 329.799C139.231 329.799 101.368 314.117 73.4499 286.203C45.532 258.288 29.8451 220.428 29.8398 180.949Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M173.349 304.469L104.699 274.219L100.879 317.419L176.379 341.419L173.379 304.489\" fill=\"url(#paint0_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M118.14 137.33H156.69V170.22H147.54V156.22C147.54 153.534 146.473 150.957 144.573 149.057C142.674 147.157 140.097 146.09 137.41 146.09C134.724 146.09 132.147 147.157 130.247 149.057C128.348 150.957 127.28 153.534 127.28 156.22V170.22H118.13L118.14 137.33ZM110.44 209.33L167.64 234.54L163.7 186.3H171.19V170.22H165.64V137.33H171.19V127.88L140.33 97.6902V95.5702C140.33 94.7984 140.024 94.0582 139.478 93.5125C138.932 92.9667 138.192 92.6602 137.42 92.6602C136.649 92.6602 135.908 92.9667 135.363 93.5125C134.817 94.0582 134.51 94.7984 134.51 95.5702V97.6902L103.65 127.88V137.33H109.21V170.22H103.65V186.34H112.47L110.47 209.34\" fill=\"url(#paint1_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M107.079 247.229L170.949 275.389L169.949 263.669L107.949 236.359L106.949 247.229\" fill=\"url(#paint2_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M105.41 266.159L172.64 295.789L171.64 284.069L106.33 255.289L105.33 266.159\" fill=\"url(#paint3_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M109.719 217.428L108.719 228.308L169.299 254.948L168.299 243.228L109.679 217.398\" fill=\"url(#paint4_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M303.02 112.797L333.95 102.857C333.84 102.637 333.74 102.407 333.63 102.197C328.408 92.0013 322.195 82.3447 315.08 73.3672L286.01 88.3672C292.387 95.732 297.992 103.73 302.74 112.237C302.84 112.407 302.92 112.587 303.01 112.767\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M320.101 171.319L352.311 173.629C351.949 165.036 350.946 156.483 349.311 148.039L316.811 149.149C318.48 156.441 319.567 163.855 320.061 171.319\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M180.95 322.759C102.75 322.759 39.1196 259.139 39.1196 180.939C39.1196 102.739 102.77 39.1088 180.95 39.1088C208 39.0785 234.487 46.8338 257.25 61.4488L279.8 37.9488C250.781 17.7916 216.282 7.01095 180.95 7.05875C85.0996 7.05875 7.09961 85.0587 7.09961 180.949C7.09961 276.839 85.0996 354.799 180.95 354.799C262.85 354.799 331.64 297.799 349.95 221.479L319.57 210.949C305.77 274.789 248.88 322.779 180.97 322.779\" fill=\"#696566\"/\u003e\n\u003cpath d=\"M312.079 69.5383C303.295 59.0318 293.311 49.5908 282.329 41.4083C280.759 40.2383 279.149 39.1083 277.539 37.9883L254.949 61.4483L172.609 147.078L286.019 88.3983L315.089 73.3983C314.089 72.1283 313.089 70.8183 312.089 69.5783\" fill=\"url(#paint5_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M352.539 179.558C352.539 177.558 352.399 175.558 352.319 173.628L320.109 171.318L172.639 160.738L317.309 210.948L347.719 221.498C347.809 221.138 347.909 220.788 347.999 220.418C351.027 207.48 352.561 194.236 352.569 180.948V179.578\" fill=\"url(#paint6_linear_26641_8667)\"/\u003e\n\u003cpath d=\"M347.789 140.559C344.659 127.497 340.014 114.845 333.949 102.859L303.009 112.799L174.869 153.949L316.869 149.119L349.369 148.009C348.889 145.499 348.369 143.009 347.809 140.529\" fill=\"url(#paint7_linear_26641_8667)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_26641_8667\" x1=\"101.289\" y1=\"306.471\" x2=\"176.755\" y2=\"306.471\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint1_linear_26641_8667\" x1=\"102.282\" y1=\"168.124\" x2=\"170.035\" y2=\"168.124\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint2_linear_26641_8667\" x1=\"107.279\" y1=\"255.374\" x2=\"171.139\" y2=\"255.374\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint3_linear_26641_8667\" x1=\"106.217\" y1=\"272.719\" x2=\"173.425\" y2=\"272.719\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint4_linear_26641_8667\" x1=\"108.201\" y1=\"238.022\" x2=\"168.713\" y2=\"238.022\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"0.28\" stop-color=\"#60B932\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#367C34\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint5_linear_26641_8667\" x1=\"176.227\" y1=\"145.847\" x2=\"307.948\" y2=\"48.3077\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4596D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint6_linear_26641_8667\" x1=\"171.423\" y1=\"176.442\" x2=\"360.467\" y2=\"215.041\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.2\" stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient id=\"paint7_linear_26641_8667\" x1=\"168.908\" y1=\"170.136\" x2=\"343.043\" y2=\"138.71\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#4194D7\"/\u003e\n\u003cstop offset=\"0.33\" stop-color=\"#4496D8\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"white\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", "svgComplete": "", - "svgWhite": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"-0.99 -1.99 363.48 363.23\"\u003e\u003cstyle\u003esvg {enable-background:new 0 0 360 360}\u003c/style\u003e\u003cstyle\u003e.st1{fill:#fff}\u003c/style\u003e\u003cpath fill=\"none\" d=\"M118.188 168.275h9.149v-14.05c0-5.57 4.558-10.129 10.129-10.129 5.57 0 10.127 4.558 10.127 10.13v14.049h9.149v-32.892h-38.554v32.892z\"/\u003e\u003cpath d=\"M171.227 135.383v-9.455l-30.85-30.187v-2.124a2.92 2.92 0 0 0-2.911-2.911 2.92 2.92 0 0 0-2.912 2.911v2.124l-30.851 30.187v9.455h5.555v32.892h-5.555v16.118h8.82l-2.038 23.03 57.2 25.207-3.944-48.237h7.486v-16.118h-5.554v-32.892h5.554zm-14.485 32.892h-9.15v-14.05c0-5.57-4.555-10.129-10.126-10.129s-10.129 4.558-10.129 10.13v14.049h-9.15v-32.892h38.555v32.892zm-49.607 77.005l63.888 28.156-.959-11.725-61.968-27.305zm-.712 8.056l-.963 10.873 67.23 29.628-.956-11.72zm3.35-37.859l-.963 10.877 60.544 26.677-.958-11.721z\" class=\"st1\"/\u003e\u003cpath d=\"M351.334 171.608l-23.994-1.722-7.185-.516-147.465-10.583 144.67 50.191 2.098.728c-14.079 63.474-70.785 111.1-138.436 111.1-2.057 0-4.101-.054-6.137-.141l-1.484-18.147-68.654-30.253-2.194 24.795c-38.163-25.444-63.36-68.872-63.36-118.079 0-78.202 63.626-141.824 141.83-141.824 27.466 0 53.106 7.887 74.85 21.463l-.843.877-82.34 85.632 113.38-58.677c6.342 7.354 11.98 15.323 16.727 23.868.096.172.178.354.274.53l-128.148 41.18 141.98-4.834a140.97 140.97 0 0 1 3.252 22.173l7.185.516 23.994 1.722a170.382 170.382 0 0 0-3.138-25.478 169.426 169.426 0 0 0-15.746-44.72 171.283 171.283 0 0 0-19.082-29.084A172.142 172.142 0 0 0 277.11 38.89c-.455-.312-.91-.626-1.368-.933-27.163-18.242-59.827-28.898-94.934-28.898-94.14 0-170.727 76.587-170.727 170.726s76.587 170.727 170.727 170.727c80.563 0 148.264-56.095 166.116-131.276.058-.242.121-.481.178-.724a170.624 170.624 0 0 0 4.232-46.903z\" class=\"st1\"/\u003e\u003cpath d=\"M180.808 5.058C84.463 5.058 6.08 83.439 6.08 179.784s78.382 174.727 174.727 174.727 174.726-78.382 174.726-174.727S277.152 5.058 180.808 5.058zm166.116 214.177c-17.852 75.181-85.553 131.276-166.116 131.276-94.14 0-170.727-76.588-170.727-170.727S86.668 9.058 180.808 9.058c35.107 0 67.77 10.656 94.934 28.898.458.307.913.62 1.368.933a172.142 172.142 0 0 1 36.258 33.437 171.283 171.283 0 0 1 19.082 29.083 169.426 169.426 0 0 1 15.746 44.721 170.382 170.382 0 0 1 3.138 25.478 170.624 170.624 0 0 1-4.233 46.903c-.056.243-.12.482-.177.724z\" class=\"st1\"/\u003e\u003c/svg\u003e" + "svgWhite": "\u003csvg width=\"364\" height=\"364\" viewBox=\"0 0 364 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M172.217 137.372V127.917L141.367 97.7303V95.6063C141.365 94.835 141.058 94.0959 140.512 93.5505C139.967 93.0051 139.228 92.6977 138.456 92.6953C137.685 92.6974 136.946 93.0048 136.4 93.5502C135.854 94.0956 135.547 94.8348 135.544 95.6063V97.7303L104.693 127.917V137.372H110.248V170.264H104.693V186.382H113.513L111.475 209.412L168.675 234.619L164.731 186.382H172.217V170.264H166.663V137.372H172.217ZM157.732 170.264H148.582V156.214C148.582 150.644 144.027 146.085 138.456 146.085C132.885 146.085 128.327 150.643 128.327 156.215V170.264H119.177V137.372H157.732V170.264ZM108.125 247.269L172.013 275.425L171.054 263.7L109.086 236.395L108.125 247.269ZM107.413 255.325L106.45 266.198L173.68 295.826L172.724 284.106L107.413 255.325ZM110.763 217.466L109.8 228.343L170.344 255.02L169.386 243.299L110.763 217.466Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M352.323 173.6L328.329 171.878L321.144 171.362L173.679 160.779L318.349 210.97L320.447 211.698C306.368 275.172 249.662 322.798 182.011 322.798C179.954 322.798 177.91 322.744 175.874 322.657L174.39 304.51L105.736 274.257L103.542 299.052C65.3793 273.608 40.1823 230.18 40.1823 180.973C40.1823 102.771 103.808 39.1488 182.012 39.1488C209.478 39.1488 235.118 47.0358 256.862 60.6118L256.019 61.4888L173.679 147.121L287.059 88.4438C293.401 95.7978 299.039 103.767 303.786 112.312C303.882 112.484 303.964 112.666 304.06 112.842L175.912 154.022L317.892 149.188C319.563 156.481 320.65 163.896 321.144 171.362L328.329 171.877L352.323 173.599C351.92 165.039 350.871 156.522 349.185 148.121C346.059 132.55 340.758 117.496 333.439 103.401C328.082 93.0837 321.688 83.3388 314.357 74.3168C303.939 61.4892 291.728 50.2286 278.099 40.8818C277.644 40.5698 277.189 40.2558 276.731 39.9488C249.568 21.7068 216.904 11.0508 181.797 11.0508C87.6573 11.0508 11.0703 87.6378 11.0703 181.777C11.0703 275.916 87.6573 352.504 181.797 352.504C262.36 352.504 330.061 296.409 347.913 221.228C347.971 220.986 348.034 220.747 348.091 220.504C351.663 205.14 353.087 189.355 352.323 173.6Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M181.798 7.04688C85.4533 7.04688 7.07031 85.4279 7.07031 181.773C7.07031 278.118 85.4523 356.5 181.797 356.5C278.142 356.5 356.523 278.118 356.523 181.773C356.523 85.4279 278.142 7.04688 181.798 7.04688ZM347.914 221.224C330.062 296.405 262.361 352.5 181.798 352.5C87.6583 352.5 11.0713 275.912 11.0713 181.773C11.0713 87.6339 87.6583 11.0469 181.798 11.0469C216.905 11.0469 249.568 21.7029 276.732 39.9449C277.19 40.2519 277.645 40.5649 278.1 40.8779C291.729 50.2253 303.94 61.4866 314.358 74.3149C321.689 83.3366 328.083 93.0811 333.44 103.398C340.759 117.493 346.06 132.548 349.186 148.119C350.872 156.521 351.921 165.037 352.324 173.597C353.088 189.352 351.664 205.136 348.091 220.5C348.035 220.743 347.971 220.982 347.914 221.224Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "User", diff --git a/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json b/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json index 9525801e4c3..f92e7be7a5b 100644 --- a/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json +++ b/server/meshmodel/hawkbit-operator/0.1.4/v1.0.0/components/Hawkbit.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json index 539b2ed318e..0929dd95d35 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json index a40cb27a1b1..abaf964375d 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateAuthority.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json index b024a521030..e198c45c042 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultCertificateRole.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json index 8a9a02558d3..cd6fbcb8cdf 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultClientConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json index 273b20745d4..368d12eeeea 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecret.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json index 2d88e253ef9..98133cd2cd3 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultKVSecretEngine.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json index 5f11fa96c59..3f42a82dada 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultSyncSecret.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json index b171b60b4b9..f3127b37416 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitEngine.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json index 03b88199a80..7692fbcd5fb 100644 --- a/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json +++ b/server/meshmodel/heist/1.1.199/v1.0.0/components/VaultTransitKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json index 436729e0434..97c06685073 100644 --- a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json +++ b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HNCConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json index 2787adfaeb0..781611b561a 100644 --- a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json +++ b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/HierarchyConfiguration.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json index 093481ca348..329ebba4d89 100644 --- a/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json +++ b/server/meshmodel/hierarchical-namespace-controller/0.2.1/v1.0.0/components/SubnamespaceAnchor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json index b8e6bed7f0b..a2a570776f0 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Alertmanager", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json index 058121212f4..4e637928fa1 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "AlertmanagerConfig", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json index 1047aca53c9..8976c9eb3b4 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/HiveMQCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,6 +55,7 @@ "status": "ignored", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "", "svgComplete": "", "svgWhite": "" diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json index 7232a613a21..b347d0b2336 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodMonitor", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json index e0bbb3b827a..dd099758386 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Probe", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json index a218a5457f4..b173c0db76d 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Prometheus", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json index 90d574f5cb4..d66cf38845a 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PrometheusRule", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json index 016e9801c8d..07afa820a19 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "ServiceMonitor", diff --git a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json index 739ba985607..13fb2cb206c 100644 --- a/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/hivemq-operator/0.11.38/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "ThanosRuler", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json index b133fe9fc5c..d20ded21a11 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Alertmanager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Alertmanager", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json index 6feb5c72f16..b991b2a9d64 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/AlertmanagerConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "AlertmanagerConfig", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json index 135fe2bbba6..ee11c36b10d 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PodMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PodMonitor", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json index f2146aa07a7..7a0a29cbb72 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Probe.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Probe", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json index e09be9fb33e..27cf1a45f1a 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/Prometheus.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "Prometheus", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json index 71f62292ff3..db0a7c222e3 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/PrometheusRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "PrometheusRule", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json index 262bd548d64..0c943d4c2ee 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ServiceMonitor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{display:none;}\n .st1{display:inline;}\n .st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n .st3{display:inline;fill:#A91917;}\n .st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n .st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n .st6{fill:#FFC000;}\n .st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n .st8{fill:none;}\n .st9{fill-rule:evenodd;clip-rule:evenodd;}\n .st10{opacity:0.5;fill:#FFFFFF;}\n .st11{fill:#FFFFFF;}\n .st12{fill:#676767;}\n .st13{fill:url(#SVGID_1_);}\n .st14{fill:url(#SVGID_2_);}\n .st15{fill:url(#SVGID_3_);}\n .st16{fill:url(#SVGID_4_);}\n .st17{fill:url(#SVGID_5_);}\n .st18{fill:url(#SVGID_6_);}\n .st19{fill:url(#SVGID_7_);}\n .st20{fill:url(#SVGID_8_);}\n .st21{fill:url(#SVGID_9_);}\n .st22{fill:url(#SVGID_10_);}\n .st23{fill:url(#SVGID_11_);}\n .st24{fill:#333333;}\n .st25{fill:url(#SVGID_12_);}\n .st26{opacity:0.2;}\n .st27{fill:url(#SVGID_13_);}\n .st28{fill:url(#SVGID_14_);}\n .st29{fill:url(#SVGID_15_);}\n .st30{fill:url(#SVGID_16_);}\n .st31{fill:url(#SVGID_17_);}\n .st32{fill:url(#SVGID_18_);}\n .st33{fill:url(#SVGID_19_);}\n .st34{fill:url(#SVGID_20_);}\n .st35{fill:url(#SVGID_21_);}\n .st36{fill:url(#SVGID_22_);}\n .st37{fill:url(#SVGID_23_);}\n .st38{fill:url(#SVGID_24_);}\n .st39{fill:url(#SVGID_25_);}\n .st40{fill:url(#SVGID_26_);}\n .st41{fill:url(#SVGID_27_);}\n .st42{fill:url(#SVGID_28_);}\n .st43{fill:url(#SVGID_29_);}\n .st44{fill:url(#SVGID_30_);}\n .st45{fill:url(#SVGID_31_);}\n .st46{fill:url(#SVGID_32_);}\n .st47{fill:url(#SVGID_33_);}\n .st48{fill:url(#SVGID_34_);}\n .st49{fill:url(#SVGID_35_);}\n .st50{fill:url(#SVGID_36_);}\n .st51{fill:url(#SVGID_37_);}\n .st52{fill:url(#SVGID_38_);}\n .st53{fill:url(#SVGID_39_);}\n .st54{fill:url(#SVGID_40_);}\n .st55{fill:url(#SVGID_41_);}\n .st56{fill:url(#SVGID_42_);}\n .st57{fill:url(#SVGID_43_);}\n .st58{fill:url(#SVGID_44_);}\n .st59{fill:url(#SVGID_45_);}\n .st60{fill:url(#SVGID_46_);}\n .st61{fill:url(#SVGID_47_);}\n .st62{fill:url(#SVGID_48_);}\n .st63{clip-path:url(#SVGID_50_);}\n .st64{clip-path:url(#SVGID_52_);}\n .st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n \u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n \u003cg\u003e\n \u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n z\"/\u003e\n \u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n S489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n S475.2,52.6,325,52.6z\"/\u003e\n \u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n c-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n c0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n c-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n l0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n c-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n c15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n c-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n c81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n c14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n C360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n c-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n c11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n \u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n \u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n c-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n \u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n c0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n \u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n c-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n \u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n c-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n \u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n \u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e" }, "component": { "kind": "ServiceMonitor", diff --git a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json index 75401734f27..135fdf89a87 100644 --- a/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json +++ b/server/meshmodel/hivemq-swarm/0.2.35/v1.0.0/components/ThanosRuler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#00B39F", @@ -54,9 +55,10 @@ "status": "ignored", "styleOverrides": "", "styles": "", - "svgColor": "", + "subCategory": "", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st2{fill-rule:evenodd;clip-rule:evenodd;}\n\u003c/style\u003e\n\u003ccircle class=\"st0\" cx=\"325.2\" cy=\"324.1\" r=\"260.3\"/\u003e\n\u003cpath d=\"M325,607C169.5,607,43,480.5,43,325S169.5,43,325,43s282,126.5,282,282S480.5,607,325,607z M325,66.9\n\tC182.7,66.9,66.9,182.7,66.9,325S182.7,583.1,325,583.1S583.1,467.3,583.1,325S467.3,66.9,325,66.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M456.4,424c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,375.1,463.9,411.1,456.4,424z\"/\u003e\n\u003cpath class=\"st1\" d=\"M284.2,239.8c-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M199.1,311.9c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,320.2,202.5,315.9,199.1,311.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M420.1,339.9c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,316.3,446.4,320.6,420.1,339.9z\"/\u003e\n\u003cpath class=\"st1\" d=\"M260.4,337.8c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2s0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410.6,214.6,374.6,260.4,337.8z\"/\u003e\n\u003cpath class=\"st1\" d=\"M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1C360.5,202.6,370.4,221.2,367.4,239.8z\"/\u003e\n\u003cpath class=\"st2\" d=\"M268.6,396.9c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,305.5\n\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5l0,0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3C220.2,339.3,157.4,403.3,172.2,429c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.8,471.2,291,455.9,305.5z M284.2,239.8\n\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,213.3,301.3,231.8,284.2,239.8z M367.4,239.8c-17.1-8-26.9-26.5-23.9-45.1\n\tC360.5,202.6,370.4,221.2,367.4,239.8z M382.4,345.2c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,365.3,385.7,354.9,382.4,345.2z M301,443.4c7.6,8,13.6,15.1,25,35.7\n\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\u003c/svg\u003e\r", "svgComplete": "", - "svgWhite": "" + "svgWhite": "\u003csvg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 650 650\" style=\"enable-background:new 0 0 650 650;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{display:none;}\n\t.st1{display:inline;}\n\t.st2{display:inline;fill-rule:evenodd;clip-rule:evenodd;}\n\t.st3{display:inline;fill:#A91917;}\n\t.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:#A91917;}\n\t.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#FFC000;}\n\t.st6{fill:#FFC000;}\n\t.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}\n\t.st8{fill:none;}\n\t.st9{fill-rule:evenodd;clip-rule:evenodd;}\n\t.st10{opacity:0.5;fill:#FFFFFF;}\n\t.st11{fill:#FFFFFF;}\n\t.st12{fill:#676767;}\n\t.st13{fill:url(#SVGID_1_);}\n\t.st14{fill:url(#SVGID_2_);}\n\t.st15{fill:url(#SVGID_3_);}\n\t.st16{fill:url(#SVGID_4_);}\n\t.st17{fill:url(#SVGID_5_);}\n\t.st18{fill:url(#SVGID_6_);}\n\t.st19{fill:url(#SVGID_7_);}\n\t.st20{fill:url(#SVGID_8_);}\n\t.st21{fill:url(#SVGID_9_);}\n\t.st22{fill:url(#SVGID_10_);}\n\t.st23{fill:url(#SVGID_11_);}\n\t.st24{fill:#333333;}\n\t.st25{fill:url(#SVGID_12_);}\n\t.st26{opacity:0.2;}\n\t.st27{fill:url(#SVGID_13_);}\n\t.st28{fill:url(#SVGID_14_);}\n\t.st29{fill:url(#SVGID_15_);}\n\t.st30{fill:url(#SVGID_16_);}\n\t.st31{fill:url(#SVGID_17_);}\n\t.st32{fill:url(#SVGID_18_);}\n\t.st33{fill:url(#SVGID_19_);}\n\t.st34{fill:url(#SVGID_20_);}\n\t.st35{fill:url(#SVGID_21_);}\n\t.st36{fill:url(#SVGID_22_);}\n\t.st37{fill:url(#SVGID_23_);}\n\t.st38{fill:url(#SVGID_24_);}\n\t.st39{fill:url(#SVGID_25_);}\n\t.st40{fill:url(#SVGID_26_);}\n\t.st41{fill:url(#SVGID_27_);}\n\t.st42{fill:url(#SVGID_28_);}\n\t.st43{fill:url(#SVGID_29_);}\n\t.st44{fill:url(#SVGID_30_);}\n\t.st45{fill:url(#SVGID_31_);}\n\t.st46{fill:url(#SVGID_32_);}\n\t.st47{fill:url(#SVGID_33_);}\n\t.st48{fill:url(#SVGID_34_);}\n\t.st49{fill:url(#SVGID_35_);}\n\t.st50{fill:url(#SVGID_36_);}\n\t.st51{fill:url(#SVGID_37_);}\n\t.st52{fill:url(#SVGID_38_);}\n\t.st53{fill:url(#SVGID_39_);}\n\t.st54{fill:url(#SVGID_40_);}\n\t.st55{fill:url(#SVGID_41_);}\n\t.st56{fill:url(#SVGID_42_);}\n\t.st57{fill:url(#SVGID_43_);}\n\t.st58{fill:url(#SVGID_44_);}\n\t.st59{fill:url(#SVGID_45_);}\n\t.st60{fill:url(#SVGID_46_);}\n\t.st61{fill:url(#SVGID_47_);}\n\t.st62{fill:url(#SVGID_48_);}\n\t.st63{clip-path:url(#SVGID_50_);}\n\t.st64{clip-path:url(#SVGID_52_);}\n\t.st65{stroke:#000000;stroke-width:0.2835;stroke-miterlimit:10;}\n\u003c/style\u003e\n\u003cg id=\"non-print-backgrounds\" class=\"st0\"\u003e\n\t\u003crect class=\"st2\" width=\"650\" height=\"650\"/\u003e\n\u003c/g\u003e\n\u003cg id=\"Logos\"\u003e\n\t\u003cg\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,76.2C187.8,76.2,76.2,187.8,76.2,325S187.8,573.8,325,573.8S573.8,462.2,573.8,325S462.2,76.2,325,76.2\n\t\t\tz\"/\u003e\n\t\t\u003cpath class=\"st11\" d=\"M325,622.6C160.9,622.6,27.4,489.1,27.4,325S160.9,27.4,325,27.4S622.6,160.9,622.6,325\n\t\t\tS489.1,622.6,325,622.6z M325,52.6C174.8,52.6,52.6,174.8,52.6,325S174.8,597.4,325,597.4S597.4,475.2,597.4,325\n\t\t\tS475.2,52.6,325,52.6z\"/\u003e\n\t\t\u003cpath class=\"st9\" d=\"M268.6,396.3c2.8,9.2,7.1,17.8,13,25.3h88.7c6-7.5,10.3-16.1,13-25.3H268.6z M455.9,304.9\n\t\t\tc-2.8,2.6-2.9,7-0.3,9.9l1,1.1c40.3-34.4,64.6-61,52.5-82c-13.3-18.5-69.4-9.8-138.1,21.2c3.5-7,5.2-14.7,5.2-22.3\n\t\t\tc0-2.8-0.2-5.7-0.7-8.5c-1.6-9.9-6.3-19.4-13.9-26.9c-4.1-4.2-8.9-7.4-13.9-9.8l0.2-0.5h0l5.3-11.5c0.8-1.8,0-4-1.8-4.9\n\t\t\tc-1.8-0.8-4,0-4.9,1.8l-5.7,12.4c-9.5-2.9-19.8-2.9-29.3,0l-5.7-12.4c-0.8-1.8-3-2.6-4.9-1.8c-1.8,0.8-2.6,3-1.8,4.9l5.1,11.1\n\t\t\tl0.4,0.9c-5,2.4-9.8,5.7-13.9,9.8c-10,10-14.8,23.2-14.6,36.3c0.1,7.1,1.7,14.2,4.9,20.8c-17.8-8-116.5-48.8-136.4-21\n\t\t\tc-18,25.4,37.3,69.8,52.1,82.4l1-1.1c2.6-2.8,2.4-7.2-0.3-9.9c-7.3-6.8-18.7-18.1-26.6-29.1c-10.4-14.5-10.7-23-5.7-27.7\n\t\t\tc15.7-14.8,74,4.8,92.1,11.7c17.4,6.7,36.1,15.1,55.4,25.3c-92.4,53.6-155.2,117.6-140.4,143.3c9.3,16.1,48,14,97.6-3.5l-1.8-2.9\n\t\t\tc-1.7-2.8-4.9-4.1-8.1-3.1c-34.5,10.4-55.9,15.4-63.3,4.3c-10.4-17.9,42.2-79.7,123.8-126.9l6.1-3.5c2.1,1.1,4.1,2.3,6.2,3.5\n\t\t\tc81.7,47.1,134.2,108.9,123.8,126.9c-7.4,11.1-28.9,6.1-63.3-4.3c-3.1-1-6.4,0.3-8.1,3.1l-1.8,2.9c49.7,17.5,88.3,19.6,97.6,3.5\n\t\t\tc14.8-25.7-48-89.7-140.4-143.3c65.1-34.3,123.7-49.6,145.2-38.6C505.1,256.2,471.2,290.4,455.9,304.9z M284.2,239.2\n\t\t\tc-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1\n\t\t\tC360.5,202,370.4,220.6,367.4,239.2z M382.4,344.6c-17-12.4-35.9-24.9-56.4-36.8c-20.4,11.9-39.4,24.4-56.3,36.8\n\t\t\tc-3.4,9.7-4.9,20.2-4.5,30.5h121.7C387.2,364.7,385.7,354.3,382.4,344.6z M301,442.8c7.6,8,13.6,15.1,25,35.7\n\t\t\tc11.4-20.6,17.4-27.7,25-35.7H301z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M284.2,239.2c-3-18.6,6.8-37.2,23.9-45.1C311.2,212.7,301.3,231.2,284.2,239.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M199.1,311.3c0,0,1.5-3.6-2-6.8c-15.3-14.5-49.2-48.7-29.9-58.5c21.5-10.9,80.2,4.7,145.3,39\n\t\t\tc-32.8,19-55.3,34.7-79.1,53.9C207.2,319.6,202.5,315.3,199.1,311.3z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M456.3,423.4c-7.4,11.1-28.9,6.1-63.3-4.3c-1.6-0.5-3.1-0.4-4.6,0.2c10.5-15.3,12.8-43.4,9.1-63.9\n\t\t\tc0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c-1.1-8-2.9-14.4-4.9-17.2C438.4,374.5,463.9,410.4,456.3,423.4z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M420.1,339.2c-23.2-19.5-46.7-35.2-79.6-54.2c65.1-34.3,123.7-49.6,145.2-38.6c19.3,9.8-14.6,44-29.9,58.5\n\t\t\tc-2.7,2.6-2.1,3.7-2,6.8C450.5,315.7,446.4,320,420.1,339.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M260.4,337.2c-2,2.8-3.8,9.2-4.9,17.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c-3.7,20.5-1.4,48.6,9.1,63.9\n\t\t\tc-1.4-0.6-3-0.6-4.6-0.2c-34.5,10.4-55.9,15.4-63.3,4.3C189.1,410,214.6,374,260.4,337.2z\"/\u003e\n\t\t\u003cpath class=\"st7\" d=\"M367.4,239.2c-17.1-8-26.9-26.5-23.9-45.1C360.5,202,370.4,220.6,367.4,239.2z\"/\u003e\n\t\u003c/g\u003e\n\u003c/g\u003e\n\u003cg id=\"Ebene_3\"\u003e\n\u003c/g\u003e\n\u003c/svg\u003e\r" }, "component": { "kind": "ThanosRuler", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json index 8b0118652d2..3e223fba795 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPI.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIGatewayAPI", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json index 1d051a6a1bb..ce782d1c94b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayAPIConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIGatewayAPIConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json index b332a370e2a..5cb171370c9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIGatewayGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIGatewayGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json index ee246a1192b..f7244e37e68 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/APIKeysKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "APIKeysKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json index 539c25a1050..718b94dc8e8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerAccessLevel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json index 7b1b312bb1d..cb23913c6e3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessLevelCondition.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerAccessLevelCondition", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json index e278aec1bf5..b71b9100ccb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerAccessPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerAccessPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json index 69442b76f6a..c6c8438c936 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerGCPUserAccessBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerGCPUserAccessBinding", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json index 20038682763..d2dac2e0bbf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerServicePerimeter", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json index eaa204fd32c..61aef9767dd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AccessContextManagerServicePerimeterResource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AccessContextManagerServicePerimeterResource", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json index 3e92faad555..9e60463395f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBBackup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBBackup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json index b5d69a4cec1..68555225c48 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json index 080063503a0..c9f96b3e528 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json index c63bdba3d60..2de9436e5b7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AlloyDBUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AlloyDBUser", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json index cf4b427badb..ae2ce7ff80f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeAddonsConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeAddonsConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json index fde415df469..2c8b51121e1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEndpointAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEndpointAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json index ce6c76798d8..7e892294c2c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEnvgroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json index 7b05130efb2..aa90826d23e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvgroupAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEnvgroupAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json index db12f90465b..4feaf3291e5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeEnvironment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeEnvironment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json index b97e817dbb0..62b0e6e0c1e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json index a75c1315824..8a5dd048c91 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeInstanceAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeInstanceAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json index e3c8a39c4da..029ab41ebd9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeNATAddress.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeNATAddress", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json index c4b3c98ec71..7437f545268 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeOrganization.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeOrganization", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json index e97c5d3a07c..6d4049002cf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ApigeeSyncAuthorization.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ApigeeSyncAuthorization", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json index c135a877a1a..8e0e95aa55a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineDomainMapping.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineDomainMapping", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json index 2254357c967..775e6378091 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFirewallRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineFirewallRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json index 6ad85c9c34f..c66dabf2878 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineFlexibleAppVersion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineFlexibleAppVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json index 3697690db50..3971deb9660 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineServiceSplitTraffic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineServiceSplitTraffic", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json index 0de4bfea10c..68ef03125b7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/AppEngineStandardAppVersion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "AppEngineStandardAppVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json index f576bb1bdca..412b9266512 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ArtifactRegistryRepository.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ArtifactRegistryRepository", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json index 6c397095ab8..d418547d4b0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BeyondCorpAppConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json index 1e694ea73bf..2a386b4adb5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppConnector.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BeyondCorpAppConnector", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json index ae7da2256dc..8db320242bb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BeyondCorpAppGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BeyondCorpAppGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json index 61f72ee60d6..e1abcb8e252 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubDataExchange.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryAnalyticsHubDataExchange", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json index 7fbeb295c0c..da3a0f6182c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryAnalyticsHubListing.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryAnalyticsHubListing", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json index 3bc8a66adc8..e61d14f429b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryConnectionConnection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryConnectionConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json index 17f4d8c65f9..c789ec80d60 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataPolicyDataPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDataPolicyDataPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json index 42ccc57b035..0f2e2f2dcff 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataTransferConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDataTransferConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json index ed4da36f5bb..5ba322c71a0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDataset.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDataset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json index 241ebb27959..65422a39539 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryDatasetAccess.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryDatasetAccess", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json index c4571265ace..1672e87cfc6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json index efcabab41a1..3a57ff21517 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationCapacityCommitment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryReservationCapacityCommitment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json index b540b9c1223..907ba7f73e1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryReservationReservation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryReservationReservation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json index c76da6ce4da..e00b5dc8d73 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryRoutine.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryRoutine", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json index c8b1fdcbb0f..5ceed214cff 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigQueryTable.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigQueryTable", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json index 4e8e5ab50fe..ca8944e30b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableAppProfile.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableAppProfile", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json index 949341ba742..b7ff15413ff 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableGCPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableGCPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json index 6c782075251..42c3b1d2294 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json index 419aa1532f8..4fc68ab7d24 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BigtableTable.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BigtableTable", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json index 04e03b0f8b2..07540fce460 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BillingBudgetsBudget.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BillingBudgetsBudget", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json index 5fd3b626689..9af9387d092 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationAttestor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BinaryAuthorizationAttestor", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json index e5698951138..ab99e9435e9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/BinaryAuthorizationPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "BinaryAuthorizationPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json index fbde188b57e..b506e483279 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerCertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json index 50ebdaa8c70..10aebc4781a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMap.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerCertificateMap", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json index 1a64a44d6ec..6babc444e3a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerCertificateMapEntry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerCertificateMapEntry", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json index 70126d12bf8..b6b0b8b00a4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CertificateManagerDNSAuthorization.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CertificateManagerDNSAuthorization", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json index 07f901f7663..296c0e0d3a0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetFolderFeed.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudAssetFolderFeed", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json index 8f31db0f31c..b7668762a01 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetOrganizationFeed.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudAssetOrganizationFeed", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json index cc9f78c0cd8..a01d6d01d78 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudAssetProjectFeed.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudAssetProjectFeed", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json index 0dd6683d531..af43e0f158f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudBuildTrigger.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudBuildTrigger", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json index ef8e1bc488e..9005263c1b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctions2Function.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudFunctions2Function", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json index ba0275e9fbc..a3f4731257c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudFunctionsFunction.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudFunctionsFunction", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json index 444482de5d0..398de1e9bf0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIDSEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIDSEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json index ca970cbaef8..18b4e8e707f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDevice.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIOTDevice", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json index 587352b7364..c0fd7e72c85 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIOTDeviceRegistry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIOTDeviceRegistry", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json index 2fb4e60ee15..fab2fa15c48 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIdentityGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json index 23ad30a991e..ce2d40697bd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudIdentityMembership.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudIdentityMembership", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json index 45e75e4da6a..5acb6abf66f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudSchedulerJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudSchedulerJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json index 008cb4199a7..05beec5ac5c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/CloudTasksQueue.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "CloudTasksQueue", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json index ae7a8432e68..3e681b56bb6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAddress.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeAddress", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json index aa0e2c7a9ab..71d3c2df087 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeAutoscaler", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json index b842c13c34a..6e384c5e2e9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json index 44454d7c5aa..9a7e2b976e3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendBucketSignedURLKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendBucketSignedURLKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json index bc584c8359c..b5ac18053d3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json index c9b7ac904b6..2d1e300b675 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeBackendServiceSignedURLKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeBackendServiceSignedURLKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json index 8c219724e27..c8001968c7d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDisk.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeDisk", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json index e6eda299770..ec50dd7313a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeDiskResourcePolicyAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeDiskResourcePolicyAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json index 20b6e052ae2..8e2f9acee56 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeExternalVPNGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeExternalVPNGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json index 05f5fa255cf..d0c9471dc07 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewall.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewall", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json index 33f5079e687..1afbb587fe8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewallPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json index 24f26993ba5..822370df4c5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyAssociation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewallPolicyAssociation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json index 2b1d44febeb..345fbee8757 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeFirewallPolicyRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeFirewallPolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json index 457965812f6..fab519afcc7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeForwardingRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeForwardingRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json index 5033d66cc87..11ccd86dec9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeGlobalNetworkEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json index f707439b3ac..1d11361091a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeGlobalNetworkEndpointGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeGlobalNetworkEndpointGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json index ac05a423d3f..959ffc2e173 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPHealthCheck.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeHTTPHealthCheck", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json index bc66fe716b0..88a27590dbe 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHTTPSHealthCheck.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeHTTPSHealthCheck", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json index a4a2e8387fd..12898f25a09 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeHealthCheck.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeHealthCheck", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json index 969375c3ab0..b93230431c7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeImage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeImage", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json index bf37cbf1b16..f94fad51c47 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json index 149a8f5bbc3..363d1e895e4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json index c8db8e32370..60e24ee5dd7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupManager.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceGroupManager", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json index 086a20fc752..e7703a00c1a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceGroupNamedPort.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceGroupNamedPort", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json index 19523df1878..1750762fd77 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInstanceTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInstanceTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json index 0936b79be69..4a5d2803b58 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeInterconnectAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeInterconnectAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json index ed9eb6f65fa..24c0ce882d6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeMachineImage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeMachineImage", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json index e75bd14e010..bbc56687eb6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeManagedSSLCertificate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeManagedSSLCertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json index cff10bbc776..3940075b0ec 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetwork.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetwork", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json index 9c3486b5cdf..bbfbf1c5978 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json index 79d5a7a5e15..c1b769fd668 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkEndpointGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkEndpointGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json index 48bdaa7f40c..5107c748193 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkFirewallPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json index 3b2f70e3dd9..f0760eeb8ca 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyAssociation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkFirewallPolicyAssociation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json index 62530138a60..b956807b987 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkFirewallPolicyRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkFirewallPolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json index fb741329078..5f4399baeb9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeering.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkPeering", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json index f677ba271cf..6a813b80aef 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNetworkPeeringRoutesConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNetworkPeeringRoutesConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json index 3f82cb0c93b..d86f5f6956e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNodeGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json index 3dc5fd53964..4933d81631b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeNodeTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeNodeTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json index 3f8e1caec7d..121cb3874c7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeOrganizationSecurityPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json index 71ca99a5031..fbd6527aaa1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyAssociation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeOrganizationSecurityPolicyAssociation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json index cf357a02a87..c4081a67ff7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeOrganizationSecurityPolicyRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeOrganizationSecurityPolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json index 41f81cc6e2c..f4878283694 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePacketMirroring.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputePacketMirroring", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json index c53a4a12f1e..e23b7509d25 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputePerInstanceConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputePerInstanceConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json index 4c3dfeff0cd..a5ac540d605 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeProjectMetadata.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeProjectMetadata", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json index b39e1488752..3fa79ff76b1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionAutoscaler.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionAutoscaler", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json index 3333ee16fa1..166a6547972 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionDiskResourcePolicyAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionDiskResourcePolicyAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json index 1c2fc1ee76a..1b38ade2036 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionNetworkEndpointGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionNetworkEndpointGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json index f7c57e1379a..6efc1a6f298 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionPerInstanceConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionPerInstanceConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json index 33ada7c4464..63344f1cd6e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRegionSSLPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRegionSSLPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json index f624dfa1f3f..caa0060dd78 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeReservation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeReservation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json index 77e475d1b1c..8e8f6eaab66 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeResourcePolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeResourcePolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json index 62d47bc3e0b..5b82f15a103 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json index 23526f539de..04b5a69b873 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouter.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouter", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json index cebbbc44568..94eb301e8d7 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterInterface.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouterInterface", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json index 5d67dcd54d4..05d96a40b96 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterNAT.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouterNAT", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json index 62850ca6184..d42846ce557 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeRouterPeer.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeRouterPeer", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json index c685f985dab..2d2a154790d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLCertificate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSSLCertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json index 4001377558d..a0d62ad769a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSSLPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSSLPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json index 0d20e5d8def..b6105823070 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSecurityPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSecurityPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json index d5f45f2cfc6..b60a2916fbe 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeServiceAttachment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeServiceAttachment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json index c6c2fea4455..d981eabce7f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCHostProject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSharedVPCHostProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json index 0f438a4904d..1eedb14d749 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSharedVPCServiceProject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSharedVPCServiceProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json index 51d99cc29a3..74154b421e2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSnapshot.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSnapshot", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json index 77aae8489c2..b58c6283ea1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeSubnetwork.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeSubnetwork", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json index e713cd6c1c0..cd513187e82 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetGRPCProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetGRPCProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json index 0b1568ed45e..f4788333a9d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetHTTPProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json index d97ecc12563..5e218d27da3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetHTTPSProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetHTTPSProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json index dc2474da788..dda5f1b8b27 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json index 5228bc794e2..c944b879f17 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json index 42e3b1e2c36..96c8ff40075 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetSSLProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetSSLProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json index 4d56a24f210..07710a986b4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetTCPProxy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetTCPProxy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json index e3b61c977bd..2771f79e3d4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeTargetVPNGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeTargetVPNGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json index 85f49692191..c69d617b0ba 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeURLMap.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeURLMap", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json index cf2481de43d..2e2aae9a6cd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeVPNGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json index c1ff8c8db1c..2123645347e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ComputeVPNTunnel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ComputeVPNTunnel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json index 819a118bfd8..f043e9c16a4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ConfigControllerInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ConfigControllerInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json index 24ae4c374ed..b486c70943b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisNote.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerAnalysisNote", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json index 9f990489235..ba74f0299a4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAnalysisOccurrence.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerAnalysisOccurrence", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json index c9db6802594..ef757ae6c75 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerAttachedCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerAttachedCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json index 71a806aa273..871b6d52901 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json index 216ae8f6395..1a22d2d873b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ContainerNodePool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ContainerNodePool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json index e2a54d14bb4..7aa14fca393 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPDeidentifyTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPDeidentifyTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json index 4e1f71f04d5..7c53c8b3c34 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPInspectTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPInspectTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json index 873d926f783..ffcbf300983 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPJobTrigger.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPJobTrigger", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json index 034e403af3d..ce82bfe242d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DLPStoredInfoType.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DLPStoredInfoType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json index 10b1f505b93..1db23776257 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSManagedZone.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSManagedZone", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json index 9e7fb700634..90f371fbe51 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json index fa2e686d487..bf11286c278 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSRecordSet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSRecordSet", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json index e122d4715b1..f04547075d2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSResponsePolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json index 0a8f29727ba..61515dcd3eb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DNSResponsePolicyRule.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DNSResponsePolicyRule", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json index b18b2a7688d..53a84c809ac 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntry.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogEntry", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json index 7b749fe91b6..ff31464b411 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogEntryGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogEntryGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json index 15b3b0715fb..0ea51acd967 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogPolicyTag.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogPolicyTag", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json index 1e68cd43a30..80919f0687c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTag.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogTag", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json index 8c313b4089c..0fcdfdd8353 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTagTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogTagTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json index 364a7aee0fa..a3547b303ea 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataCatalogTaxonomy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataCatalogTaxonomy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json index 127ac621d02..26679c3091c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataFusionInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataFusionInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json index 8efc6906c23..d47dd4ccf80 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowFlexTemplateJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataflowFlexTemplateJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json index c72e8d616a4..5554d3ff8bd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataflowJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataflowJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json index afc80353b2f..afe9f4041e4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataformRepository.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataformRepository", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json index 8deb59acc63..7a2d6766a77 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocAutoscalingPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataprocAutoscalingPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json index 742ed043049..21f3026bf50 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataprocCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json index ba578c4cd07..da23928da6b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DataprocWorkflowTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DataprocWorkflowTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json index 1321acf4f9a..d99434453ef 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastoreIndex.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastoreIndex", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json index b547826f1c3..92b3383a38a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamConnectionProfile.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastreamConnectionProfile", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json index 2ec8cf37c7a..a33a14be785 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamPrivateConnection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastreamPrivateConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json index fa78860cb3d..3ee06733771 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DatastreamStream.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DatastreamStream", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json index 311363e8b3a..d94afd219db 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DeploymentManagerDeployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DeploymentManagerDeployment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json index f88a40adc09..e785b8d8e8a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowAgent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowAgent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json index 7ed84ed13a9..cd3c056403c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXAgent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXAgent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json index 8a34abb5688..0dfa417b2a6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXEntityType.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXEntityType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json index 94bd5a7272b..a4acd67ac39 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXFlow.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXFlow", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json index 55505ddf83b..9887d656579 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXIntent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXIntent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json index f3e0e75f89f..e776b9425c0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXPage.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXPage", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json index 4ba295bb38b..865d20e248f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowCXWebhook.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowCXWebhook", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json index 3a753206e93..03b4c05e9f2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowEntityType.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowEntityType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json index 579b766028b..79adaf4c7cf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowFulfillment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowFulfillment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json index 396b5bdf045..9657e748ff4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DialogflowIntent.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DialogflowIntent", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json index 9c5b2a2a615..2d6a21bbb1b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DocumentAIProcessor", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json index abb455434ac..ba554d6437e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/DocumentAIProcessorDefaultVersion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "DocumentAIProcessorDefaultVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json index 8ad511fe0c5..9f77059e676 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeContainerCluster", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json index 7f5ce715a9a..d39ac537ff1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerNodePool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeContainerNodePool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json index 39d5000f826..583d7d0509a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeContainerVpnConnection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeContainerVpnConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json index 8026c12679a..d0d76811f7e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkNetwork.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeNetworkNetwork", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json index df262c7b276..fa57595beb8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EdgeNetworkSubnet.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EdgeNetworkSubnet", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json index a65f5ae3329..9d931197f91 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EssentialContactsContact.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EssentialContactsContact", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json index 6e91abc9a2e..bbe2a2b6cb1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/EventarcTrigger.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "EventarcTrigger", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json index 2171512d1f5..194f93d7a66 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreBackup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FilestoreBackup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json index 5a5cb3cb06f..b0cf9b4c07d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FilestoreInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json index d958cf4b301..5787aaf2382 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FilestoreSnapshot.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FilestoreSnapshot", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json index f4488f53abd..4dc7c989a62 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseAndroidApp.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseAndroidApp", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json index 4f07f7f9cc3..a41f8432e65 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseDatabaseInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseDatabaseInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json index aee96a4a20e..33aa2ed1748 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingChannel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseHostingChannel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json index 275b0eb1892..7de4517f145 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseHostingSite.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseHostingSite", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json index 8a06190d3be..3a5d5163e42 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseProject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json index 0257ddcd474..49c4b711cd0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseStorageBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseStorageBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json index 969c5d3c88e..382a4255e61 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirebaseWebApp.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirebaseWebApp", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json index 5fff0bbb938..283f78f7afe 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/FirestoreIndex.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "FirestoreIndex", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json index 4ab2326886e..f660da0b30e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Folder.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Folder", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json index 448810a6cb5..b9d558211ed 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEBackupBackupPlan.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEBackupBackupPlan", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json index f9096ac1ff0..9f1fbc8864a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeature.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEHubFeature", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json index 348bd235e1f..fe45e325f4e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubFeatureMembership.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEHubFeatureMembership", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json index da0e0474f42..f212675dce1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/GKEHubMembership.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "GKEHubMembership", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json index d278e981b9a..90b882ec41a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareConsentStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareConsentStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json index 21bcd6e16e1..d5175140317 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDICOMStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareDICOMStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json index 9ff40d41170..9a2064699a2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareDataset.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareDataset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json index 5212ad76f1e..fae6096382d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareFHIRStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareFHIRStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json index 09f3778923a..038ab773105 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/HealthcareHL7V2Store.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "HealthcareHL7V2Store", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json index 0890ba3a848..285ef36a687 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAccessBoundaryPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMAccessBoundaryPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json index 03272eca7e5..197def608b1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMAuditConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMAuditConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json index 059b2f24464..711645c1fcc 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMCustomRole.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMCustomRole", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json index cf1ba1de2d8..c847fdcc237 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPartialPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMPartialPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json index c6a2a70ebd0..35c34add65b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json index 9d7ddada2e6..6b061910e77 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMPolicyMember.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMPolicyMember", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json index d15b06fb34a..69930517fbe 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccount.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMServiceAccount", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json index f2bd99f7078..147c9d3d6bd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMServiceAccountKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMServiceAccountKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json index ce53d72c5dd..04a696129ee 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkforcePool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json index 292a02203f7..78a8f86eb45 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkforcePoolProvider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkforcePoolProvider", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json index 44bc0b66d2c..fee4b638559 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkloadIdentityPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json index 284c0d4428a..80f2a77b67c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAMWorkloadIdentityPoolProvider.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAMWorkloadIdentityPoolProvider", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json index ce2e750b14e..cd4bf7a4d67 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPBrand.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAPBrand", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json index 554c0cfad19..874c30d9592 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IAPIdentityAwareProxyClient.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IAPIdentityAwareProxyClient", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json index 5dd06252999..9b55486acc2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json index d9350d6599c..f43e90c0985 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformDefaultSupportedIDPConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformDefaultSupportedIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json index 61c7e153f17..75f72a87549 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformInboundSAMLConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformInboundSAMLConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json index 2a75834ec18..ec0e9393ae5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformOAuthIDPConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformOAuthIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json index ba7abff87fb..a1175545cd3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformProjectDefaultConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformProjectDefaultConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json index 1778ce0aa7b..2a7290accc9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenant.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenant", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json index 487bf0d8244..eb989ebb373 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantDefaultSupportedIDPConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenantDefaultSupportedIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json index d75446cbdb0..1785384625b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantInboundSAMLConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenantInboundSAMLConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json index 88a7956349f..aebd87c0b95 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/IdentityPlatformTenantOAuthIDPConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "IdentityPlatformTenantOAuthIDPConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json index 808cacda559..caf4f3020d3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSCryptoKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json index 2179639e722..74119a86a9b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSCryptoKeyVersion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSCryptoKeyVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json index 62c60715345..a85b7145dfa 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRing.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSKeyRing", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json index e8ce9eac75a..5f3de5de43e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSKeyRingImportJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSKeyRingImportJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json index 89eab88c4b0..96386e9dcf3 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/KMSSecretCiphertext.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "KMSSecretCiphertext", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json index 171fbe164ac..ec20121720c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json index e0f7d7a896d..450bf5eb82f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogExclusion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogExclusion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json index b32e8812ba6..3ca1dc9d94a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogMetric.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogMetric", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json index b959851ce7f..9e371b02de4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogSink.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogSink", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json index ece06d8774e..de377613143 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/LoggingLogView.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "LoggingLogView", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json index c2f028690fe..0f1856fea8e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MLEngineModel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MLEngineModel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json index 84135e919b5..11f9181a3b6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MemcacheInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MemcacheInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json index 9529367ecb3..c672ffb877b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringAlertPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringAlertPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json index e035ae71892..da6c82d9ac2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringDashboard.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringDashboard", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json index 8c980d2bd96..189877cc2cf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringGroup.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringGroup", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json index b17e77dcc38..1d8de607046 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMetricDescriptor.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringMetricDescriptor", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json index a824dcef828..1a8ba0cec1f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringMonitoredProject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringMonitoredProject", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json index e895ad9c3f9..4e3492f1e02 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringNotificationChannel.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringNotificationChannel", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json index 2060cc79c3e..fe4477be6a6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json index 15aab027001..20ce37e953e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringServiceLevelObjective.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringServiceLevelObjective", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json index 8f382e29ee5..d2dba1e95c4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/MonitoringUptimeCheckConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "MonitoringUptimeCheckConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json index e13dfa9d6b5..6d88be405b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivityHub.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkConnectivityHub", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json index c2e59584e5d..e71ea198090 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkConnectivitySpoke.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkConnectivitySpoke", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json index 9a8ba0ab817..914c3e66579 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkManagementConnectivityTest.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkManagementConnectivityTest", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json index 8fd6d1d97c7..641eada633c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityAuthorizationPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkSecurityAuthorizationPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json index d3e706026ea..75b013afd35 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityClientTLSPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkSecurityClientTLSPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json index 7c727de4177..3471c3e0971 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkSecurityServerTLSPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkSecurityServerTLSPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json index adf6ffc2e19..b0f73441649 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheKeyset.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEdgeCacheKeyset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json index c00681e0a43..05152e77d3f 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheOrigin.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEdgeCacheOrigin", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json index ed1de80f251..f70a1d1402c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEdgeCacheService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEdgeCacheService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json index 139ad357643..9695bde7b51 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesEndpointPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesEndpointPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json index 1685dbbb1d3..d2e4215d76d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGRPCRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesGRPCRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json index b2ee33f9242..bd50016c1f0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesGateway.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesGateway", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json index 69392b41840..7ff6265945e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesHTTPRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesHTTPRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json index fb442131c0c..55b15769b86 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesMesh.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesMesh", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json index e8d566d8c4f..27720368b56 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTCPRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesTCPRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json index 54e8e22de77..856f6158cad 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NetworkServicesTLSRoute.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NetworkServicesTLSRoute", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json index 5c602118e9b..2891a80c199 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/NotebooksEnvironment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "NotebooksEnvironment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json index 9d3e7df0209..57bca7b16b1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigGuestPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSConfigGuestPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json index 254046720ef..1e959510d69 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigOSPolicyAssignment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSConfigOSPolicyAssignment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json index 9e918f0d53e..97deadba720 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSConfigPatchDeployment.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSConfigPatchDeployment", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json index 37cdca0184e..78a0b602c03 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OSLoginSSHPublicKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OSLoginSSHPublicKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json index 4a02c3dfab0..77701e2242a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/OrgPolicyCustomConstraint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "OrgPolicyCustomConstraint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json index d4bf411d7ea..e025c1f53fc 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACAPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACAPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json index 00281ab5dc9..a75c19613d1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACertificate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json index 9fbacd95da7..7a7faa54973 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateAuthority.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACertificateAuthority", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json index 12a71d6aaa1..23f2299e0d4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PrivateCACertificateTemplate.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PrivateCACertificateTemplate", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json index 1aeea551eac..47474f788da 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Project.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Project", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json index 99cb4a85ca0..30e168446f6 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteReservation.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubLiteReservation", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json index 9a988b8a6ec..99f8d7df04d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteSubscription.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubLiteSubscription", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json index 215e17ad25b..e3d6462b26d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubLiteTopic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubLiteTopic", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json index 30a248e8fa6..a25445335cd 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSchema.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubSchema", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json index 61aecc360db..da694fff5ce 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubSubscription.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubSubscription", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json index 91fe1716da4..d1a2e78e755 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/PubSubTopic.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "PubSubTopic", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json index 0382f5ed4a4..348dda8ac53 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RecaptchaEnterpriseKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RecaptchaEnterpriseKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json index 4c8b59dfa0d..ae4cbc4e8e9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RedisInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RedisInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json index 42f0cb2d356..f1df6f00674 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerLien.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ResourceManagerLien", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json index d2955ce2091..b7e278195e2 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ResourceManagerPolicy.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ResourceManagerPolicy", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json index 9907939f71b..844792f0e00 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RunJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json index 975f7f680c7..1f38f092e3b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/RunService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "RunService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json index a3bd7c7392f..0f4b8229dc4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLDatabase.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLDatabase", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json index 06c16ec5dc2..da8d9c2eaa1 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json index 330d7a46c10..45135dbb709 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLSSLCert.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLSSLCert", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json index 3b0ebc5ab1f..8d866dfbd1c 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SQLUser.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SQLUser", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json index 0990a356a1f..80bcada575d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecret.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecretManagerSecret", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json index baafc6fc582..fe03939ad62 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecretManagerSecretVersion.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecretManagerSecretVersion", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json index 7f872d1e3d6..90ce6173504 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterNotificationConfig.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecurityCenterNotificationConfig", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json index 6b61e7e77b1..a47dc6c7fc8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SecurityCenterSource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SecurityCenterSource", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json index 27e9a4fb9ce..e9b6cf8391e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/Service.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "Service", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json index 792390ae038..ab056cb24f9 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceDirectoryEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json index 7d0536fe691..7ce2ad5639a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryNamespace.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceDirectoryNamespace", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json index 9086c60c1ce..5ffd3cc72ad 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceDirectoryService.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceDirectoryService", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json index 6e8b22939a8..761476ccfdb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceIdentity.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceIdentity", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json index 68f93002706..36b043f9cc0 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceNetworkingConnection.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceNetworkingConnection", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json index 95c9f8be41d..a0189a2906b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/ServiceUsageConsumerQuotaOverride.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "ServiceUsageConsumerQuotaOverride", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json index 1207000a619..fd167086abf 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SourceRepoRepository.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SourceRepoRepository", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json index 8896e7817f6..e238f6d603e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerDatabase.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SpannerDatabase", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json index 4c52227d8b5..2f50a860617 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/SpannerInstance.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "SpannerInstance", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json index a7f985abad8..094f4d3dbac 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucket.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageBucket", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json index da62cfd734f..a7cd3d38bd4 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageBucketAccessControl.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageBucketAccessControl", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json index 1ccfa1b4758..3b96e4cd91b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageDefaultObjectAccessControl.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageDefaultObjectAccessControl", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json index 3984836cdea..757e09c79ff 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageHMACKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageHMACKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json index b0890de1802..4195884bf6e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageNotification.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageNotification", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json index 53ff8f3caee..bff3a7414cb 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferAgentPool.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageTransferAgentPool", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json index 10592ca645d..23dc74a3fd8 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/StorageTransferJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "StorageTransferJob", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json index 26429b4ddee..bbd4e3f73b5 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TPUNode.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TPUNode", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json index 5c46ec61ea2..8e28c05c07b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsLocationTagBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsLocationTagBinding", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json index f7a2924913d..619c9067062 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagBinding.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsTagBinding", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json index 6bafb9efa66..7ed5a3af85e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagKey.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsTagKey", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json index 6661edd1553..ac9f84dbf11 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/TagsTagValue.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "TagsTagValue", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json index a3b2e1d47bd..f3755799f6a 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VPCAccessConnector.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VPCAccessConnector", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json index 4375f626f07..f852476cd11 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIDataset.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIDataset", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json index ecdb3d97fc2..41bc97207ce 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json index dc17bc8dfeb..caff44cc641 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIFeaturestore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json index c5f59505b35..8c34662b48d 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityType.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIFeaturestoreEntityType", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json index eea2e52205d..470d8f69513 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIFeaturestoreEntityTypeFeature.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIFeaturestoreEntityTypeFeature", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json index f7bd28dac95..c87cb008f9e 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndex.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIIndex", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json index ee1e3801171..15a43bbd25b 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIIndexEndpoint.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIIndexEndpoint", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json index 5160580a874..d22f8ab1836 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAIMetadataStore.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAIMetadataStore", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json index 947b579286c..230dbf6a422 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/VertexAITensorboard.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "VertexAITensorboard", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json index 36fa68eb402..8b0adf37927 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkflowsWorkflow.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "WorkflowsWorkflow", diff --git a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json index 3e7320c7a35..884d16f71ef 100644 --- a/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json +++ b/server/meshmodel/k8s-config-connector/v1.118.1/v1.0.0/components/WorkstationsWorkstationCluster.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#4285F4", @@ -54,9 +55,10 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M10.1893938,2 C10.3728304,2.00077434 10.5258338,2.13095973 10.5618102,2.30439506 L10.5698113,2.38112124 L10.5698113,4.33245019 L12.6188242,4.33245019 L12.6185298,2.38171121 C12.6190451,2.19767714 12.7494087,2.04435844 12.9226324,2.00831145 L12.9992416,2.00029499 L13.6211004,2 C13.8047946,2.00077434 13.9578302,2.13118557 13.9936134,2.30467737 L14.0015178,2.38141623 L14.0015178,4.33245019 L16.0505308,4.33245019 L16.0502364,2.38171121 C16.0510093,2.19767714 16.1814051,2.04458429 16.3544356,2.00859376 L16.4309482,2.00058997 L17.0525126,2.00029499 C17.2362068,2.00106932 17.3892424,2.13125471 17.42542,2.30469004 L17.4335189,2.38141623 L17.4332244,4.33245019 L19.2543403,4.33245019 C19.46215,4.33349903 19.6348304,4.48348275 19.6714654,4.68150582 L19.6786294,4.75781925 L19.6786294,6.5749298 L21.6189937,6.5749298 C21.8026879,6.57544603 21.9559489,6.70605085 21.9919857,6.87979269 L22,6.95664102 L22,7.57876539 C21.9994847,7.76305757 21.8688957,7.91663439 21.6956156,7.95254426 L21.6189937,7.9604766 L19.6786294,7.9604766 L19.6786294,10.0129856 L21.6189937,10.0129856 C21.8029455,10.0135018 21.9564642,10.1441066 21.9921668,10.3180461 L22,10.3949918 L22,11.0168212 C21.9994847,11.2008552 21.8688957,11.3543998 21.6956156,11.390108 L21.6189937,11.3979424 L19.6786294,11.3982374 L19.6786294,13.4510413 L21.6189937,13.4510413 C21.8029455,13.4515576 21.9564642,13.5823882 21.9921668,13.7559889 L22,13.8327525 L22,14.4548769 C21.9994847,14.638911 21.8688957,14.7924555 21.6956156,14.8281638 L21.6189937,14.8359982 L19.6786294,14.8362931 L19.6783349,16.6539937 C19.6775497,16.8624501 19.5276394,17.0357122 19.3299336,17.0722629 L19.2537514,17.0793627 L17.4335189,17.0793627 L17.4332244,19.0295117 C17.4329668,19.2138039 17.3024099,19.3676066 17.1289366,19.4035729 L17.0522181,19.4115179 L16.4315371,19.4115179 C16.2475853,19.4110017 16.0940666,19.280171 16.058364,19.1063727 L16.0505308,19.0295117 L16.0502364,17.0793627 L14.0015178,17.0793627 L14.0012234,19.0295117 C14.0009658,19.2138039 13.8706343,19.3673807 13.6974146,19.4034882 L13.620806,19.4115179 L12.9995361,19.4115179 C12.8155842,19.4110017 12.662291,19.280171 12.6266447,19.1063727 L12.6188242,19.0295117 L12.6182353,17.0793627 L11.606,17.079 L11.6075624,17.1291822 C11.6075624,19.7465558 9.57152078,21.8817501 7.01776046,21.9952542 L6.80378122,22 C4.15072611,22 2,19.8192606 2,17.1291822 C2,14.4391039 4.15072611,12.2583645 6.80378122,12.2583645 C6.85035544,12.2583645 6.89677486,12.2590365 6.94303054,12.2603716 L6.94200715,11.3982374 L5.00193724,11.3982374 C4.81824304,11.3977212 4.66498204,11.2671163 4.62933976,11.0935721 L4.62151983,11.0168212 L4.62122539,10.3944018 C4.62174066,10.2103677 4.75187886,10.057049 4.92504623,10.021002 L5.0016428,10.0129856 L6.94200715,10.0132806 L6.94171271,7.9604766 L5.00193724,7.9604766 C4.81824304,7.95970227 4.66520747,7.82929103 4.6294243,7.65599685 L4.62151983,7.57935536 L4.62093095,6.95605104 C4.62170386,6.77227509 4.75187426,6.61898865 4.92484841,6.58274807 L5.00134836,6.57463482 L6.94171271,6.57463482 L6.94171271,4.75752426 C6.94249788,4.54906786 7.09264084,4.37603884 7.29039837,4.33953996 L7.36659066,4.33245019 L9.18711763,4.33245019 L9.18682319,2.38171121 C9.1875961,2.19767714 9.3177665,2.04435844 9.4909379,2.00831145 L9.56753504,2.00029499 L10.1893938,2 Z M6.72943699,14.4904938 L6.00155422,15.2285341 L7.54520096,16.7942708 L4.07020096,16.7941541 L4.07020096,17.8379007 L7.54520096,17.8382708 L6.00155422,19.4020024 L6.72921198,20.1402708 L9.51619567,17.3161415 L6.72943699,14.4904938 Z M18.2467641,5.76017991 L8.37416681,5.7604749 L8.37494037,12.5248503 C9.8017631,13.0253356 10.9235874,14.1884603 11.3824464,15.6512622 L18.2458808,15.651043 L18.2467641,5.76017991 Z M15.3046241,8.28260075 C15.5126956,8.28312517 15.6856377,8.43351678 15.7219141,8.63163695 L15.7289132,8.70796981 L15.7289132,12.7038431 C15.728128,12.9122995 15.5782177,13.0857947 15.3803051,13.1223972 L15.3040353,13.1295072 L11.3158357,13.1295072 C11.1077643,13.1284583 10.9348221,12.9782415 10.898339,12.7801667 L10.8912522,12.7038431 L10.8909577,8.70796981 C10.8917429,8.4995134 11.0416532,8.32625131 11.2393591,8.28990781 L11.3155413,8.28289573 L15.3046241,8.28260075 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath d=\"M12.3008862,4.00003179 L18.9908678,7.90329279 L19,11.4442164 L14.973309,9.0680926 L14.973309,10.8562526 L16.9806355,12.0276231 L16.9918433,15.1064843 L14.973309,13.9136004 L14.973309,18.415105 L12.3008862,20 L12.3008862,4.00003179 Z M11.6991138,4 L11.6991138,19.9999682 L9.02669102,18.4150732 L9.02669102,9.06816678 L5,11.4441846 L5.00913223,7.903261 L11.6991138,4 Z\" fill=\"#4285F4\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", "svgComplete": "", - "svgWhite": "\u003csvg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1894 2C10.3728 2.00077 10.5258 2.13096 10.5618 2.30439L10.5698 2.38112V4.33245H12.6188L12.6185 2.38171C12.619 2.19768 12.7494 2.04436 12.9226 2.00831L12.9992 2.00029L13.6211 2C13.8048 2.00077 13.9578 2.13119 13.9936 2.30468L14.0015 2.38142V4.33245H16.0505L16.0502 2.38171C16.051 2.19768 16.1814 2.04458 16.3544 2.00859L16.4309 2.00059L17.0525 2.00029C17.2362 2.00107 17.3892 2.13125 17.4254 2.30469L17.4335 2.38142L17.4332 4.33245H19.2543C19.4622 4.3335 19.6348 4.48348 19.6715 4.68151L19.6786 4.75782V6.57493H21.619C21.8027 6.57545 21.9559 6.70605 21.992 6.87979L22 6.95664V7.57877C21.9995 7.76306 21.8689 7.91663 21.6956 7.95254L21.619 7.96048H19.6786V10.013H21.619C21.8029 10.0135 21.9565 10.1441 21.9922 10.318L22 10.395V11.0168C21.9995 11.2009 21.8689 11.3544 21.6956 11.3901L21.619 11.3979L19.6786 11.3982V13.451H21.619C21.8029 13.4516 21.9565 13.5824 21.9922 13.756L22 13.8328V14.4549C21.9995 14.6389 21.8689 14.7925 21.6956 14.8282L21.619 14.836L19.6786 14.8363L19.6783 16.654C19.6775 16.8625 19.5276 17.0357 19.3299 17.0723L19.2538 17.0794H17.4335L17.4332 19.0295C17.433 19.2138 17.3024 19.3676 17.1289 19.4036L17.0522 19.4115H16.4315C16.2476 19.411 16.0941 19.2802 16.0584 19.1064L16.0505 19.0295L16.0502 17.0794H14.0015L14.0012 19.0295C14.001 19.2138 13.8706 19.3674 13.6974 19.4035L13.6208 19.4115H12.9995C12.8156 19.411 12.6623 19.2802 12.6266 19.1064L12.6188 19.0295L12.6182 17.0794L11.606 17.079L11.6076 17.1292C11.6076 19.7466 9.57152 21.8818 7.01776 21.9953L6.80378 22C4.15073 22 2 19.8193 2 17.1292C2 14.4391 4.15073 12.2584 6.80378 12.2584C6.85036 12.2584 6.89677 12.259 6.94303 12.2604L6.94201 11.3982H5.00194C4.81824 11.3977 4.66498 11.2671 4.62934 11.0936L4.62152 11.0168L4.62123 10.3944C4.62174 10.2104 4.75188 10.057 4.92505 10.021L5.00164 10.013L6.94201 10.0133L6.94171 7.96048H5.00194C4.81824 7.9597 4.66521 7.82929 4.62942 7.656L4.62152 7.57936L4.62093 6.95605C4.6217 6.77227 4.75187 6.61899 4.92485 6.58275L5.00135 6.57464H6.94171V4.75752C6.9425 4.54907 7.09264 4.37604 7.2904 4.33954L7.36659 4.33245H9.18712L9.18682 2.38171C9.1876 2.19768 9.31777 2.04436 9.49094 2.00831L9.56754 2.00029L10.1894 2ZM6.72944 14.4905L6.00155 15.2285L7.5452 16.7943L4.0702 16.7942V17.8379L7.5452 17.8383L6.00155 19.402L6.72921 20.1403L9.5162 17.3161L6.72944 14.4905ZM18.2468 5.76018L8.37417 5.76047L8.37494 12.5248C9.80176 13.0253 10.9236 14.1885 11.3824 15.6513L18.2459 15.651L18.2468 5.76018ZM15.3046 8.2826C15.5127 8.28312 15.6856 8.43352 15.7219 8.63164L15.7289 8.70797V12.7038C15.7281 12.9123 15.5782 13.0858 15.3803 13.1224L15.304 13.1295H11.3158C11.1078 13.1285 10.9348 12.9782 10.8983 12.7802L10.8913 12.7038L10.891 8.70797C10.8917 8.49951 11.0417 8.32625 11.2394 8.28991L11.3155 8.2829L15.3046 8.2826Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" + "svgWhite": "\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3009 4.00003L18.9909 7.90329L19 11.4442L14.9733 9.06809V10.8563L16.9806 12.0276L16.9918 15.1065L14.9733 13.9136V18.4151L12.3009 20V4.00003ZM11.6991 4V20L9.02669 18.4151V9.06817L5 11.4442L5.00913 7.90326L11.6991 4Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { "kind": "WorkstationsWorkstationCluster", diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json index 54d9ecbdc2c..df160ac1f5f 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/CloudEventSource.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json index 69146d6b02f..6b1ed815382 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ClusterTriggerAuthentication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#326de6", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json index cbb262c4d24..09368a91c6f 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledJob.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json index ae1910c06d5..5cb56687485 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/ScaledObject.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json b/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json index 4552d15b694..f18e8afb6b4 100644 --- a/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json +++ b/server/meshmodel/keda/v2.14.0/v1.0.0/components/TriggerAuthentication.json @@ -45,6 +45,7 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#326de6", @@ -54,7 +55,8 @@ "status": "enabled", "styleOverrides": "", "styles": "", - "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "subCategory": "", + "svgColor": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 625 625\" width='625' height='625'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:none;stroke-width:30px;stroke:url(#Gradient_bez_nazwy);}.cls-2{fill:#326de6;}.cls-3{opacity:0.95;isolation:isolate;}.cls-4{fill:#fff;}\u003c/style\u003e\u003clinearGradient id=\"Gradient_bez_nazwy\" x1=\"13.47\" y1=\"482.29\" x2=\"13.47\" y2=\"481.29\" gradientTransform=\"matrix(518.53, 0, 0, -494.87, -6676.79, 238739.99)\" gradientUnits=\"userSpaceOnUse\"\u003e\u003cstop offset=\"0\" stop-color=\"#719bea\"/\u003e\u003cstop offset=\"1\" stop-color=\"#5478e0\"/\u003e\u003c/linearGradient\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cimage class=\"cls-3\" width=\"125\" height=\"230\" transform=\"translate(399.25 306.58) scale(0.49)\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAADnCAYAAADYSuIDAAAACXBIWXMAABbCAAAWwgFTLGrhAAAgAElEQVR4Xuy923IcR7IlupZH5KUAXkSx2b0l09km2yPrB9FmXvgD+AnN75D6Hv0Ef4AvY0Y9jGns6Jwto7o3m6JIEFWVmRG+5iEiqwogQJAUKQGkXCqgCKAqs3KF31a4e1IS/pSPT+y8P/hTPkz5E/iPVP4E/iOVP4H/SOVP4D9Sief9wZ9ytpDk/FyXLD3iJTvfP1RIEK8pEi70hf0T+NeQlwC/9y2Bu6f/8b3jgF/UBfAn8K+QYsrn6/Mtca+C/fAVmn+7vuAegM2LeeFcwZ/AnyHHtPweiIffEfgGB4/vEwcHOHz04CXwr35+R/fv3wduHQj4Drj9jbYW4GKB/yfwp8gW9KrlD8GD2+DhowdcP10Qt7/G8OQHAl/tvOoHdP/4Sv0NCHiAB//7ULh1INzGBvyLZPb/BP6EbECftfzxLd75+1Wuny44/FvLdBj52Y3I8SgQAKbVYzaLWwKAfz7N6v/tC+/+AfU3oKufQ/cf4kKC/2cevyOb9OwY6Ad81l23o/09uz7sh2t/WYRfnh3FZ91RjF0XF598EZ51R/FFasL1W124PvwcjvZhz7of7PBRsRR4+B1xryyo3RTwj5Q/gT8mAvBtAWYD+g92K/Z27S+L8OKTJjTP29h2i9jFPj7zVfPMV00X+9h2y9inGF6kJlzL/wy3Yr8BH49v7YB9IRT+T1M/y3ETD965UbT2VvzKng+PQ58Owzq3oQ/BJjPzjtRUtJeN1Lh749lXnn0vjnnVXc2//H+TX7/9Rb4F+K7Jvwjm/k/mDjtp2wb0B/asu263Ym/Ph8ehaY9iYBeCxYA+BOQhLCbSmwL85J1D7stouVtZXgIYF0F/u+F68uOP1rdfCjuqToJ/NPh/mnoABfRviYff8eA2uP78DgvoXQF92UVpatCk1qep7VLTZniXlTtNue1iaqGpMZ+adYyxzU1YjC/COkb77Ebk+vPvt77+gshHD/w2dbsLPL7Fxw+/t6Mff7Sj0FifYgjLLgJjA7RNl5rW4V3ucpcZO4e6TO98yq1CbqHUhDDGYRHCxGhDeGbjUeDwpGXJ+7+prN8fL3+aemBr4v9+lc+6r3lz+Nni0AQ1yyi10Rs0ecotmJvIGFPOMTagPDJbdMfoVJzMOmDMCnFwizH3w01O10amf0WinQ92BtX7O8tHDfwuO3dwG3yMO7z17Cf7ZdGHOC0jvY2LKTSahlYhtsq5hbMJIYTs2QAgwN2zZwBkAKwxH3IIRjOFQ/PlgsCXKI+LIx818AA22n54AzwafzTsLcNCV4Kvm4hmajygFWLr8C4EdIAaF4JJRgtyyGEhwQ205NNouTGmuDRb9sb0jPzsxk98/tNzAl+fdza/m3y0Pv6ktj/rfrCbbWdXwr9ZWK5iiCFCsVHIrcM7c/Uu9e7qzdQLoRPUybwFrCEtMoUYO1qmWbK17Y/kJ/u/bn364/sXwr8DHynwxxk68PHD7+1W7O1Feh5eLJfR4hChqWlDbn0soFtAbxZ6M/R09DT1DnVwayFvaDlmMSRPoSHNE5knI/ApgC9efUJ/gHykpn5O377mnRv/Yc+66zz6V2NXFn8174awytbElFt3dMGaLlOdO3pBHWAN5QEAglsGRKd5Zo6xiWYjTSTVkBjK0cajny+Mps/y0Wn8lisv6dv66YK3Ym/DZ8GOmmWEpoZKjWJsnercimmnqadZT1OvYJ2yOlFtBhvSo4nBE02R9DiUY1wtR2r3Pytkza2DP5S02ZWPDvittpf07Wh/z45CY4sxhhjHaCHGro0NzNvQxI5Sj4yFOxaUegq9QR3MWlTQXQwOmphMGQS6E8f86dQz+SPlowL+GFlTGbqbbWeLoQlhuYphaKKm4tcDQueu3k29zHpSvZAXADu5uiA2DjUgI4EQcjb5iZ23Q+AJfsF/AuhvfF21/VtcBPmogAewJWsegUc//mjrGG2ZXoR1HCL72KANjUJoXerp6s1DD+SFyXrCOgEdaC2MDcEoeRDcZGBsXj5cWHxy3LzfvXshzP1HA/xZ6VufDkOMbQzhWoSHpqRuKCmbhR7UwmS9My8k9ETx7YAaAoGgmQUej5MHcJJC48K/gHg9XQiwd+WjAR7Alqx5BKbDr7iO0db7bbBQ0jeF3IZJnUfr6OhBLYS8cGJBWU+wA9lSatwVKQWRBvfNomJoZAmy2OuovarYS/gRAB4A+A6vKNP8XeWjAH6j7XX3rWj7z9ZfjSGsmmh2NSLkNo7qPIaOOS2cWtCxgGNBqpehEDauFmSkIQgwEwgEAEDOEg1iaGURAp4DAOLVL3X18zvC7W+q5v/x6H/wwB8ja+ruWyFrmrAeQwhxjFBqmhza2czLQg9gQWBBsx41ogfREmrgqNruO9cvARbFrAr6EWztCnsu4Idj53QRqm0/eOB399rv/P0qh39reRQaW1x7EUJYRQtXok+Vlg3oM7UAtSCx8Ao+jCWoE4tvNwYJZiIhEMigBTFDNGiYJBul0Lnwz3+W07h//5Vn+XvLBw38WWTNYjgM7dQEvpgaTUet0ztBnXvozUNPYEHYAtRCYg+hn0EHQ5AURCPMAEIwiYLTJk1ZsiitGil019Usbqn7x1d/uIaflA8a+LPImmVqwzI2kUiNQmxloaUKO4dd3w4sQPSAOlItgEZSJGHYyRLoUDbJEDw08iB54wvH06do97OA73H/1oEuSg4PfMDAv4qsaXMTzKcGbWyUc2uu3iz0dCwo34Ow59CCsl5QL6AD2ACIBAwyQiIccEIezOlQMogJskmyVoqdC9ghby5IDg98wMADOIOsCcFijFBqlGMbGAtDh7xwaOG0kr4RC1E9gY5SC7EpkbwC6DQU0KkCOiU3yVPb+BCksL6iX48+0c9Pky5aKgd8oMC/mqxZxRWmhtpvItS5Tb1Z6EFbANiD8h6hBYAFgB5gB7ARFSUE0iiBTgiUqCwK7ghuis60FifpqFXJ4We5QKkc8CFvy+5U1qTxK673Hhu6NvSKkcmbJuY2Z++o0MPSgm4LAAvBFiBnlq4H1YA0Qg4wQ9W7iyLoNLm7OwM8cSx1G725ryXuu2JIunrzzmYBXIRUDvgANf48sgaaGrbWOLwTQ+emnjksQN8DsEdiAfiCRC+ildBKiIACKAOdJERClMshZ5Ab4Ca5RdRUTkLN5C5aKgd8YMC/iqw5erGMIY4Rnpo4rjtH6Ii0IFBYOtoCVrWe7AXv6/5qQyoCNKkuKgfgLjc5BXcFz5InNT7JfdVIwK9oFq7u5sVL5YAPDPhXkTXtIgYoNsqxVQituXpa6AlbwLAHYQ/yPQILCoWXBxuSESiEDQWCJpi5zJyAC3KD3BQ8SM5JskEKS1e7/5nw8OKlcsAHBPzrkDVUbhS8dUfvpt4dC2BO37CQNo8eUAuqARQB2MaFuINyEXLJisYzZIN8pmtDI8XuEwE/XchUDviAgH9dssYROgvq6VoQVh8oET2wANWT6gC2cDUAAiADCJKi0UU6ASeVRcuUiqlv5JN33vi+/3rkFzaVAz4Q4I+TNfcrWfPkVLImQB1dfQE7FxMP7BFakJzTtxZCAzJCCAAMEh2Cl2ZHd8ln/qaYeripcU7LC5/KAR9SOjeTNTeu8sn4o2Hv383Si9DHRYSWjbxrI9llzz2IhZU99hLYCSWoE3oSHYQWRAR2iVmAFXRRbrQsIDuZKbma6DYOYt9f+FQO+AA0/iRZM1OzV0KwGMc4hBCpWMka9aysHIU9WPHvAhcCe1I9oA5EA9QUrqgpQQik01j8epYzw01V6yUPXeuXIZUDPgDgARyrrJmp2RdxGS2UvL0JpQWqbMRYT9jCgQWqfye1ILDLyTcld6dha58FuQQ4ATciO7ITyb3StcNUduUueioHXHLgz6ZmY2hTDMPYRITcykK7JWsw07HFvxMLiD2AnmALoIUQSQWAZTMGEAUJ1c1T2VHNPS0bQ56yFOR+GVI54JIDD+B4Hd3Nr/giPQ/r/aNgIUZ2sWlyaLOPpSkiF7IGwB7BhagFvGzGAOoAlEILIgi0OZoHUel5uOBOt2ywLFim4IayFXtZUjngEgN/GjV77f/8r3Dl1l9tpmbbWlkTUIonSSxg2COs5O/AQpWwQdH2BkIUGCiVa0MIosBq5sksyEVlQu4oqZxdolQOuKTAn0XNDs3ntqVmQ6OQ21JZg96LH685ewGdjgU3++0ohRZkKLz8XFYFCCqgG7MEF5BRovtstGyCp0uUygGXNp2byZqveefv/8Fn3ZaaTVJE6ht5bj2rMwsd6AsBC6ctKO05uCC4ANUL7KxsxjQqhRahHsJBCpC49e1OKYOWBWaTuwOXLpUDLqHGn0fNhqGJMzUbmtg50wJA2YSpwRyBhegLAD2BTkILoSEQpZrCGQAIAgS4RGYCWWAWstvM2l3CVA64hMCfT83GDTXrrp6y3okF5HszLw/4HsEeUA+yhVQJGwWSpjmiA0XSpRrYOdxombDskBO6lKkccMmAf706utQohELN2lwxqwWEPRoXKvl7D6AH0BXQGctmjJW8XSKKgy9xHOGQO8nsyMW3O7KoTMkvWyoHXDLgAZxTR1e2XYO8Mws9c1qUPB17xdSrFlpoy8mDjVAieUBV21H23FHSOAGOEs1ng2Vzy66yFx8s5MuWygGXCPjXq6MLhZp19TmnhTMsuAEdeyAXcG1KpoVN82Opni2PchwW306WFA6Vsdslby5rKgdcIuABvKLpMUYqNk0dVERpa+JrkYVXsgZkL80sHRuAEajVs0CJHGs0L9IBOAQHmAVkuWWymPnLmsoBlwT4N6+jsx4sft3nvL1ofKVmt9oOKKq0O3MO6gBAM00rOmbChsykNoydC56b6JYGxb53W0thzxWvptIkWeWipXLAJQD+bevohLDx79gUW/gCmx64MtgAQCBgEAzYBnWs2k7AQWQKLlcWcOlTOeBSEDg6k6zxuAhYeSNHq4DWXD0s9IAWQt6DbA/EnqBSNQt2hDrQGkjNnMIBtKLr3B5UkAAHVH17AR9QdsAN8Cx5lHyYIG+giF/RLLqayl28uTe7cqE1/jyy5lgdXditoytaXnh5VW1nT8ycvFqVFC4AZijHKe4dFACh1FEXjXdmillV0y97KgdccODPJ2t26uh8W0eH2v82m3lsu2JaCC3AyE3eLsO8IYMSyQGQyt1jHEAGlSX3ksrp0qdywAUG/vXImvgSWQPLe7WAck/ADujqQLXYVNegbMZo5xqo+HcVZ++CSlQ/78p9IKkccIGBB/DWZA2APbCQNZIvAHZS5eTJqFIyXUAvC4wAIBYzT+wEdmD+0FI54IIC/y7JGho77PS3Q4gES+UsMVfYVBGKlXcB8Dm4AwpdS2T/EFI54IICD+CdkjWotXQlfdNcRGncjR9RAzuhEDeSCGawarzPKVzyy57KARcQ+HdD1ugYWQOo1slXE19BF0Bho/ElmiedkABWbZeTyASc2Obvl3VXbpYLBfy7I2u4JWtYN2KICJXmRwgmqPLyM+5zGgdBdFjh5wFmfWCpHHDBgN+mb2/S9KhjHTFC2YRR2X0rzRF1IwaYy6pAsGCu3WOrOnnO/DyyvDTNfEipHHCBgH8jssZfl6ypAV2lZlFNfAnqtjV1wAbwUlsHblK5ws9/WKkccIGA32r7a5A1x5oe6347uDidrJlr6UokL8AgEtW37yh9mXBRqq0+6FQOuCDAHydr3rzpkcCeS6XbFfNeu29aobjddjVgS89i+0TcCe7wgadywAUBHsAOWXO1kjX/bsv04vQJVcQCxIJWBxah9MOhVtZI21aoEtAhQKpkjepjhhwgqeLhJUEffCoHXADgT5I1b9T0COy5yuya3cqaDVkDRHAma0io5u6bg1e/XhRTYi22+8BTOeACAA/g7Zse5YWhw8tkDQrwZcu1fE4rwdyOpT8W0mNTP/+hp3LAHwz82dTsazY9zsHdLlmjQtaQCJjTt5qzk8AOYTOLsJPD8yNI5YA/GHgAv6npEbUVCptSabYgG5GVrJlBN6KguwO6Nl8ASSipnD6CVA74A4E/jZp9o6ZH8z2BCwgLYTPQoJI1qmQNNkUWPBuNauZLjR0+glQO+IOAP4uafbOmRysbM0SdRzd3u27JGtScnQVTvgyGAHAb0H0kqRzwBwGPDVnzMjUb41j32nPrkzpD6FjM+8LrlquDZfcNrMFcnVsDRlFz42NJ31hNPAls/PsMOAUUNS8p3G9N5V7+pBdVfnfgz6Nmz296LB0xohaafXsdaACooRg0Az8PJQRwfN8dqFiXJyypnIBK4Lw6lWMedXoqd3/z7q/yLRdBfnfgt9r+tk2PvjfPrCFYtJ3c3PgPrGRN+WzztusxEDY2uFbclFC/pnLcSeW81NML8NnMU/Kk6JZWdYLl9fJ2D7/HSbnI4P+u5dXHqVlwjTu8+ehni0MTUvYw+dSgVSPr2pBTBws9si+w2/QoLAgrna5QR6iVClkz97/tBnTFcp96OgX0Yu5LgEe45EKN7A2WIXcYs8BMuTNGh0tAJ+QXKGtqAdz+GsDXwMPvCHwzv/87BV/artnfKr8r8AC21OwN1Hl0+2YphD7GCHkjVxvpHS30ytNC1cSTtlBtepT7gmAvouOGrDlWR7fV9lMvO0v8BgI1lWNBXwBcgpOl2FIowwuhLJKiS8wSGyhnALgBYI3hyQ88HJ4Rj28V3G+fdtw3kW/Lt7t3N3uIxxfRlnJ8G/ndgD9J1vz05Ae7iX1DOgze7cVV9iaobSKmzh09lBdgWJi0B7MFHHsw1Do66yC1hFoHd/baYaC2GzHCK/SNAiFIIEyCdoos5RRdBqebu0oIkAXJiADAEwhcQd57xmlc2heHX/vjL8E7AK5+DuD+m2r6/ePPblUS6H+C+Oa7nTQRAL4F7knzNX0bS/C7AQ9gS9ace/MA6wEUE79TR8dNHZ3mFO4ENbsDOk58xe7F0c63WlkrCCwmHyyqbiUkrLs6QZCjAZADqQB2MouM1oXWfsn/DNeeTfx5THr25Evhvx+/19x50t08EB6W57fxPYASMxQ28D9wtZ7trYfQd7gL3KsvvIe6AN7MAvwuwB8na77ZavvVPkzPPKKbGrZN45o6MXQy9qa0gLjnxILwPYh7Knl8BX17nxhol5p9HW3flXqtiGLpRYH1jnL1d5ITFhhEOmiBMOUxjF0TUoohpVtqF0/4y7Nrvr8nhe6f2tw8/iz5J47Lr/8EeqBZuIr7ANr9rP/ET4hPb+rZkx/U3fxKhzegg88h4D7vPzwQ7gG4C4ECCb6u9r934FkZctwDcb+SNV9cs1+OmsAXy7iIHuFoYsqdN21HjAugWQhhwVpEuSVr6kADooUKNUt5JWxmalanaXsRAWULtig2YLNvn891ozNSzQYMNAR6uVFBMPfINkYoRGpqfEpQNxjiIl9fDzpaS9JVAc/wSrmyfRq6axuwMn5FyRSewtMn2l+44l65eWHz6Gdd/Xzwn54kdf/4qw5uw+8/RAkH7mGj/a8D/nsHvoD+7TtsemTZiDlWR7elZlFCoXN0nVWbj1+fkgHU9yEIuVEMLkWKUVCDqEY5t1LIMWRw0Zp7DtPonrLULiSLk0qZwNFpBy+y3D61cdqciDV7OvJfYXFfaBu/fvRcR51kKXnsrvnj/4p+PSV/cjs6ANy5AT3AfeHhY+HeNxV88jyz/16B32g77gKP73ONBW990ZsPh0G+CMN6amhoFNi6WU+ph2NhtlNHJy0A1jo6nVpHhw01i8rXCDgX/PlPtPu8LhoZgQAyOBnh3sjQBljrpS4gBwcSFQSPMZdOWrYQUy9kr2+6OP2wGArtNEuUsAbWWIO5U4wLha51Wx1qcHmv7NN6kRWabHrhsbuSr72wvJ9/4uNu7XceHfiD2/cBQLj3LXHvfF//XoHfavtd3vn7VT4Z9yyExrT2oLaJMS8bhb51oDP3HkKpm1Peg1gKLGAlyNvU0ZX+NwHRyKBNZQ24Mc/HAH2VaN6xqxpuLC4DAWWjpzGpBa2F1GfTRMHhmbIYYmKjwORQjo15ypK3EMYJAMDQnHESu6gDniawbdTmTjRoCpC4djXwMHV5Sp6bzvOUh6Q2Z6VVasIeny8t3+qAx/gBdx5d9QdPQdwu2cB5Jp/nWIS3lk1Adw8EYLcB6x/9HGPXxTQM7dR5b9QC1u1bTldhdh3ZP5HphsluSPpUxA2CnwC6DuCqoCsE523Yucom4NhEi5eZuirlMhACahcskABNAgcCKwBLAS9Y7v/9HNIzkM8EPTfh0KEXMDsy59rhA2BTCJ48h0xLyi6RsVxQCwLSKadxQhJKpT8AU/BkSabgGZPH0CfPQ3YPCYiT+zKJcVqgmTyllPeGNI376Vo35OfXv8i3AL//EMLtb4V7d/Uq4N+vxt/DW5E12DQ9spA1tE5SoWbnOjryZbLmPG1/eTmweMSyOAEFCrFQwGpFdhQWFJIANwsQPDishXGEPClbEtwB84AgKJc3lut8RjwjM0jKICHRnW4OuJs1yXNKEhMsTcx5jLEdmZN5k4g0sp0ahXSoo719Hf34o/r2S+HxfQCz1p/t698L8O+GrNlpelSpo1O9vyv4KrLmpQqbU2THn5f/DI4AWkC5M0XLYo8XADJBOUFCAWJrVA9hgpDKMGO4Z4hMAkO50HUBnCVljqJhU+eJ4Ch8sRPKlE+ATXROOcYB0SOhkBkZpoQQGy1jdK2l9Evwz25Ef34dPPj8QPcLbaxXubv3AjyAd0jW4G3ImtNkxxRU0CWKpaWKrH6daFBaqhOKS5AKPsHFhmAvaQSURCbOFK9JlOk8wEGrC8ML+HK4mdMlEtnIDCEJmggfFDgEeSMguAKDZyhGrZN5GEaPn4SMw+d29K99G9IPfjg8K6Df+5a4d/f3M/XvhqzBHlg2YjjPkX8nZA1QlFwodZciy+sDiCAgstxZ0kl4+XtRYmBZdJ2gEcRksgQUbVfxM6VqC9iCe5a4z89KwjjvDZBZUgI0URxFrilfS4ggSJOk4ACS2ZRiDGlI68AQs181psNItHfqW989/dhV3inw75SsQRloAJY7Qr0xWXOWSNTWJRClYMNUgsQG2IAuABBoLBF+C2A0YJJYTTyzS6JJEATM2nzyoI5doVFwwaFa7lUGJxYrwwnCCGig2BT34yTNXSnTQoI0mYVpykPoRrP1vjE9+4Xpxj7XP31PPP4vAgevXHzvFPgC+kUja04Id5/NuT+MZUtX2MBGoszHiSIbQB3ASVAClCXmUpoFQVCZprHz8pcOy80vytwFzqyhl60BJpQsYyQ1gLZSKSSBwdypCWpGMDWkYmI0h5m3YB5J/OUmMK1PPfZp8s6Av/hkDQDML2B9onJdy5uE3T8T3AAGlFuMNiy5WRKYyTK5GmU3TzCIvn3tsbc5RcS5zk8i4BAza2oJYAAsSjIWX5QFjXC1wNRQFtxgkZMhkdnB3TN/XXlnwG+1/aKSNbsiCvMrq2Zj/klZEAQNYNV4NAAzoMLQka4ZdHh5Ox4/B5I6buGrFyBV1gO9nkYWlVFNPCuMLMUgE4EBUEOwDGI0EA4itABGnCq3Xm3mgXcE/DZ9u/uKyprYyMKxyhpZ3qNsAWjeeaugqxPUseTtpelR2tbRHdP210nfjsn8QlZbQYgV+PITbhdDAJlZ6vlKyTUhES5JBVwCM3cEzO9RnMaxMyMgCdJsCRyAg8gQEoiRZLE+VII4koruDLQaz8xwGoRxBKNkhhJa/usJonfqb3wtPAXKzs1dnCXvBHgAF4+seaVsX0cVZ1vALyiWxUQHFCA5iK1ZB1yq/lyq1THbdXQc7RPnRggqiTsL6A4oEZzqOTiACfJ6pwyWN3Mv7y+JohuCpyY4HN6MazXhmnvfalgeoTR13Cm7da+Q3wz8VtsvKllzmmhH6wVszMfGA1SNhzbaWUHDVvW0BZY7z09KXWCgHABZKn1UiZp6BUUhazOUaSZ25gHKliHPNEvult0mjylkET64e9x7Kj5ZKH5S74PzOYTvzs7hgfM5xdeTqu3vckIVXmp6rKDjxNe3F26+F8UqJr5kDGH3QSDCS/l2eaAB0KJU9zYgWuCsx+ZmCC3LmPRSBl6LQ1U/o+r5EJBK3J8FZZiSSQm0SVKCKUUPKdNzti43i+xdvubNwtX9Y9Rum/Z74+o32n5hyZpzhUXptTHY0KaWgSBVrl4NKcortFF2ATgZ1b0kQn2/+W+9fhYRsFoDAAKCSj5PMckwERwhjE6OcI6gT8qYJE8xK3t75GPT5+Wzxxq885s3vtZ9fH3O+RR5a40v6RuKtr/zCVWnNz2WA+98fSei7XvX51X7iFqfz/pACasCYAaagTSw1vKffGwshhVyiDPNXOIUzG6qLCQHlEFMkI0iRggjXIPAAfCBwQeiGYA8gWHyJqac2tQ8Td5Nn3hp4YKA74B7Z2v6LG8NPCC8vwlVJ5oeawqHdwr4S/LSAkC1MJKspH2z1VEZfCyc/SikEDnX+Ysnzp+VvGEGK2MHTKRGQgOJtYg1ibWJawcHuo8MNgJ58pxTH1Je/fVK3v/L5N0/Rt2/f39TjfsqMw+8JfAbbX/PE6owkzWFWN8c/pRTepeys8i4sxzEYwviNR41GizxXHnr6iA2ZdylJkCcBI0ABohriWsIK5PWElci1sx5yODAbKMYppymNDZT7jz747T2/sZKuPVYuPctXkfeCvittr+nCVWbSL78p81Ff9+Yn5Q3AxqblbIRAtioHjeRgRxCRqFpJ0AjwQHAGvS1kUsBK8CWkq/duRabNUMei6lvpr2uTavnV/J+Ltr+4H8fqmj7XZ04h1PljYE/Tta8pwlVu2TNMW1/2/Tt95RTznF2GAX4Uv1DbUAXMABYC1iBtpS0ArGUYWWGlTGviTyY+oHN/phTLto+na7tZxVf7MrbRfX3UMmaq5Ws+Xez9CL0cRGhZSPv2kh22XMPYmHc6XadJ1RpnlD1vsmaP0Tmky0PUXZhGpYAACAASURBVCwpmgPKAhPBCcQIcSA0QFyTXElakVhCXIlcwdNa1q5tGkfE5eQZaQyW9fxK/vQva88/jXrw+FA4+Eb4Dnrd6/RGGr9L1uC9TqhSjXyLrpQDXgZt38huaKWyZQ+h9N0nqm7IqPp12ErQCvAViCWEFZFXAlZCXBnykNp+gMUppzbtT3vpSpzy47T2W7e/9qLtqEHd+doOvCHwALbafnJC1bCdUCWzlmdMqCLZnyRreDKge/dkze8v3NH4EsxlQFlCSdvAUbNfl9Ygl4AtDajgc2XuayoPBhs0+gQ2U15MaR1TfjJ+5teHr2px5etF8rvy2sCfpGZ3bx7QphiGuJ1Q5VJ/1oQqVd9uRNl9k+o48eMTqnBM2y+VnNB2zX69go8JdfuVrKAbViYWwB1LgUXbybXBhimHUUyT55T6ozH3KXm8+kPJ229jo+1vIq8NPIDj1OzNE9RsF5sme+uTd2bqzUN/1oQqAZ28DDQoZA0CoMDdXBmbr5dIKou3q+2a71ZZU7dSwTMCHOQaYFxhDubkKxFLU16FEFdmXCdwEPO0QDOltEjreDU/GYettld5E20HXjO4O6ntPz35wW4+2jfc2KFm1TSy0BqmPrv1Ri2o+V7tWIjs4ehp6qiZ567zago1S1Vq9pTwRLgUy0AA5sqaqumco/hN6jaRHAANpJVgTlyCWFaNXynElTyvPcSBYRglTp4s7XUhpyE5vvzSHwBlM+YttB14E40/oe0v0vOwHkNo+hBGC7HJuXWoE6yjqRewAFH8O7Cg2JPqJWwYOgmzthe2iyew5TEeXG/+OI9Hf5cyH0tQcVKFpGEZmQYgQZgIGzD7dmBFYCVgKfgKHpYCVvK8LmRNHjGmya2ZxjDlVTflJ+Pg/aMHwkNoHp7wptoOvIbGn6nt8a82rVYRnVdtn+poMvZG66ES1aOUI5fJk2RLlPu181gwh03h1ua4gGqVzRt8qDkBmHlwAS+97fuSHW3XZvG5pFpWhZK+QSPANYAaxXMJYFnyd1/BClNnngdmjY447aUpMY7Zsnk+WvqDHw+FA6iUT7/hJaryehq/q+2Hsfr2ox1tX7ey0AZYZ7BOUk9DL6kX6xADFvMuMAqI2gJPoFwtqGiKyn61MJvKVz428+lUEJdIOo5H1fOVmX/2ruWEtp8M6GayhqOANaC1gJXAFRxLwFcAlmZYmXNtGeuZmtWVZhqbKa+6q/kYWbPR9tdL307KKzWeO3p4cBt8DPDmo85iCDamGIY8xsA2AqFB9lZSC6ozoRNYyqeEFlQLsIE2M+i4s1ILGAU8UmCtZyon8cqPpXJ+BFBOdde2l1hR2okZWF8zv+idcgPlc6gsQJQiiixY4qzt0nGyBip+HWFZFkFay8LapjwyapQwjSvLWl3Jn15fe/7HDllzb/MZzjuvU+Ucja969xA8fPSAwxNwumZcphdhMrPYWjBLcUJu5N6C1qr0nLXyDdiNaKVQ8PjxhFLrlLHlrbNKG2EtNT7jwfnBCWCCmKD6OynXzY8MlZm0goRyn9h5kWln0f1WeYmsKaDPZI0qWYMRwCCxULOvS9Zc+e1kzWlyro/Ht7Pq3UE6BIejYFwEW+QhGLsgG6PJImERZKRQKkx2btpLbXLzqhFwUBmoFQql9ozEhqKtcoZClo/Nnb/h5ruBKvn/lg8ACGnb3rKNHXa/v728RNZwQ9ZwQ9ZgILAmsBJRyRqV5+LK5GvJB0MsZE3XTHmxTvnQ8tH4md8EtmTNd3irgG5XzgceqHXyf+VnX1yjpz2mwTh1MPcpABZMDIwMyB5BBW1621BLzGZw59ZkWMFYDqDsbROst3k9AcIpmBS4CKDaO4JlIdSZ9KhZwswC1vq5uaiDs0tRfTcKb2f2tbNshK2JP0HWcCC5hvsaxpU5V7JK1pArQCuQa9NM1oyTZ0v9MGYg+HD1B129+dVvSt9OypnAH/PvBwf46ckPHI8CAXKypTW2ZzTRRXPSkLPBKvniznpLdgHMkGfQJshjAQJOKIoIkozz0igX8AQAu5+T2x8JLF1UYgG9lmcRpUqmbPIEwEvFTLlPfAFfNM2Lp5RXvQ3oRU6SNcV6ZYDJgMnBkcIo+UDjCsKGrAG5NOUVQ7MStE6OQtaomdapTR5DPloe+U3M1Gw55G/VduCVGv/ye08ro918RqyvwNOSxp4CGCzTGQF5VSNzSFlkIjWBHOiyenkzoMlrgwBLMWUBr9Shbg9ogI6BMp8TAYpQUV5CJrFouBi07XMPAKLgsbTHKWzeRyzLZvv+b2ryT2j7TNZww9ABmggOINaEbXbe5L6C/X5kzWlyvql/+B1x+5tjP/JuyZB6AAANyi4Zs1C6+5LIiTWYQTkGZXS4kowDhcji/ynIDIA2VT27BxJPxaK+AJu4gCYqcDPCBFGscYbQsJjf5ji0qvad9Wq+idbX4PCYts8BpEqASk4SRoADoDXga4IreQUfXAFYwfPaYYPlPGqKk3c2jWGdp87y88PBbz56IDy9I9z+FsDdd6LtwOsAf4rYsCfrXISERJmFLDHRMLn7ZIZBRCNHIAE6suATjAPdI4wBTgN3A7rtdd8EeCz/2kr9sRdVh0AHjZQRihIjDRFCrehRC8mLOZ9fTmwXzMlg8nW1XsBL1CwdQhaRoTlvxyCo7sBxRbMlVFI4k1ZOXwezNTZkDaa9xHdO1pwm5wNftvwI1OF7y+tiN2jyzo1LpzHDkWDNRM8jyLWAAIeRkIgEcYRZA+VGZKAjgOXCm4EAj5l0virLlBMEJdJKHBIgBhKlx01oCbYgOgD9htypoKuAXsZRlGCsaH0JQl9D5lRQKB2ycBTiITuVCZtQQB9RI3mUurklql+XfEVwZYqrPI2DIY4iptyt00hmj1fzcjj06zdWAmay5u5vSt9OyvnAV+lufiU8+hmxk9IgoXVPqc1m62RsJngeFbCGYHDUa6lkwghDA6FxWCAVVCJumki511qb8ygFr+pugEAr4yeMUvAyviSCbAF0KBRxgjAzeEBR+zLGrHIKNbhnsfivG9nvaLs2pt4FZIoJVAI3bq6YeePKVFI3c185sZK4EvJgDQd6GKVhSqlN06p752TNafIK4HcOdP8+cOuvaL+4pl+euSKzwwfv2y6lFCaGEJjGkB1mFkAFd08JZgOotowQQTAqqPQHWcnnSvS/+TwzuGeKQSz9baRR8gBYYNnTbyF1EHsQE4iMWdMFgxRIRKAGf4SXBSiVzG4G/ZULQPO3ou0StEPNUrVMWqPKJK21wBXhq8LO+Qqoe++GtTsH5jAi5CkPbdq/3qbp+X/647TnX9z+2vHw4Tsha06TM4GXSksJANy/daA7N6Cfn/6oa3/J3jzfz1iskw+NiUcTs5kbGRGUs1yGFMxGuVoHI8gIeXDATCWKL5pu0C7YZ8I+B+OZpYHVTXIz0GCMrtwarZXYA74nMFtxvkQhByKqVRAUWcxztdcnr+e517e+DsI2b99Ss8IIciC4BrQitILbUvQVHEsJKwSsHT4EhGFsOLayKS/WaXj8qw//7X/km4/eLVlzmry2qb/6OfTsSdJ+/pv/kv7l7XIvU+vExRVOU0JrkjKdQRnS6FJDY1S2aCEHJ80yTZVZk4ERjtI3cb7InUCELFNeWlncGJC9AdlC7IwYi6aruPIy0KgR2LL0smUWinjeJ1fR8PkgeFVodyJ926VmkeiVmuUcyaPuwNlS0IrA0sRVDlrJuQ6xWU8cRw2YPFjqh/2MGHJ+8oOufv5uyZrT5Hzg70G4B9y/f593/n7gPx/+yGt54Yt9yy+WE8uOy4SUksz2M9wTDZFUzI4QoOA5GJiMkZSjsLnZmSNQrOSrJAKeWXkfBCPdaVk5GBhg1gjqJPUgkkDRC+iiGojF59PqRAsdm3FTvs3DjM/x8W9AzUJai6hmnksAK4Wy+yblgc4RHsauXac1Q0YO+Wg5vBey5jQ5B/gdP3/rQFc/B9YPv/Tn+wC6f+IK9rBMQSFKNmSfmjHZNKUQQpjcQiTNTZYJazxQI8ud4XwkrDkfcwDKYwGjbaE80SZSlAV4oFsE1Dg0EiFJEJQNQHSpQ4msJ8AmFT/hhDlQNoFrVPc6zvOEtr+KmsUaXgM610pmJXWDr+Bcg1ap2TTCFpPnw3QFV1NKg+PLL/0q8N61HTgH+I2fn7X+IXDnxgPh8zv+/Me/Afl/YWw+V1ittb4Rc5tCaLtmGvMQZCj/JdEacHKyQzGEHp0l6J3l+GzXYxIaAIDGgUCHxNEizBJiMOaojNYCcilpg5FsKHUwjRIngBOJDCLL6WW7vwDOEtS9yrxv5bWpWe1Qs7ahZiWsorCSuE7AIKapyzmt1aaR2Y/GQtbcf3rnvWs7cK7GY+st730L3LurBw/v+B08MBwt/Pn+NXx2fe1HYeHpl2B9fJ6XIdpkwfZHo3dkzqRHcuFLgvsAAMs9PC3L5d4DyhjZs6S8hqGHJ1AsC0qZwR1NE5lTAhhg9NyQNqI2IAJIhJd5NeVzFJ8u6LXALnJC29+OmjXFlZuvPdvAOIxSnDyltNddyWn4fx1f3vEH+PF30Xbg3P34XblbWnRuQw+e3vFbt7/2m+2X+XFa+/N/rfKn19cJWEzc70atXoyxOxpbtEPj7RC5HKb2k/XUNuupbdZrrYYxcD0GrsfhvMdyPQ7Nen24HlYahmaw9TTYOmAcSulxGhnyqOwTaJPMk0xJjkzJAXNqJ4p/o2taA7+T1Cx2Gh7JSeBOQOdl69Vr5excKm21ji6cVkd3s9bRHei31NG9ifB108M5tQNQS7HKbbYObpeSrPXT7zn8W0vgK6TDH/nZjUgAKDt6RaaVvaxnf3vpJ6dKXhrTmvxkvxSCxHUbsT81GW1HDXuwdt/g1yBeN7MbrnyTwE2Sn8rxqYAbJK4BuAphT9SCYEshimXDSGV7GNgaf+E4NVsLPDYVNbURAi8EHAJ4BuFXmv0i11MafoH0q8N/DWbP3P2QWUfZseoC17TVZLGfnv/0PD98/F+OgwOfyZp3nbeflHNN/SzzCtz4fHyP4ve/A/CNDh7/F3H7AIePHhDtHYxHwPrp9/UCfl2+Vd81PPlhuwB2Xf0rJC0jPzuKPJp+sbH5XOiX0Dpbtx8zclNu8V0GxCrDYXVObKGCN8u2kMgEN9ieavLnFG926ZeXmj1LXlvjd+WY9gPFAsyyveHeRg4e39/5+wO8sRwAh48ecP30Do/2f7RreRGaxVH0bq+dsvcm7MWGV+B+HbRPnPiU0k0KfwFwU8SnBD+hcF3kFUD7JcVji90hDNuagCrb6ZM1gi8+XRhBrFFuMPICwCGgZ6A9pfRUxC90PXXiKWS/Cv7cgh/S2yPXsFrJBq268dPr6/RHaDvwBhq/K1vtJwHheDDyTfntt9/WS3gX98+Zq3qu1DHcd248sKG7rmb4SbG7rjRI1klIW7RUyn8ohZrQq2zeUVa3YTj/X2QH6Ze0f9Z2CZeUmj1L3gr4WU6e5GYhEJiH5b8bKW7lwf1D3b610D+/+Jv6tMb1nb9Q2Y5hqQKSkW4QTKSxjCdl+besskH1IdYN/pMHrXYeBfhLSs2eJb8J+JPyPlZrcSt3BYC4daD+BvQMP5VfXgW6FemBzIFEohlRqnHKTpyx/psoO4JEeWhj1l9Sc2C7CnTZqdmz5A3SuT9GtlrwLYASMP4/AG7iU/hIekP6NFlIyYw0ZRoJoxRY5scZCcPOxClhDvBm1CtVK+wqfv3XcWoWxAQeb3HWXC5dfP6GmqXyQM8jchi7dkpjTLm0OP/2psffKu9U49+v3N08Kynir8y2T2Ftij2BbACN5kFCAM0gD9Q8QJClqNPrFCoQmEMV7OBNzAHdrom/tNTsWXLhNX5XDh7fZ7ldN5D3CjPoccHIZGI186xz6aRAq7PoUOfUFZ/Pov0qqd2u1KKNikShZjFTs0gGFLJGGLctzltqViy+PahofGlxLtRsSm16kbPPTY9/pLYDlwx4oHAA08qYB+NiIruGdNKMNJcHyoNqsYXKIGADUObqQLvDlEosipPYbwz+DjW70+IMFGq23Ehgp1S6dMUUapbrLBsY0ghWajZeyX36/33/yy/9weeHbz3Q4F3J5QL+4KB8/xsAXIe3ZB5GU2ipUr5nQiwab7WWvk7Q0qaZYmPnoRPbsKylAuVXEj4AavYsufA+frex4/DRA6bxJnM2oifTam1sO4YpGUIN5FB9PBAIqwGdjCRRR5Qey+cr+MRcRFlZundSNft+WpzfhVwCja8X5uF3G+1Ma3J/PKQa0jlZ2WSnUR4AGA1zjX0AFAQYQJv3YoHdiH627SVhr9vzTuzcOaLs9m2oWYqlr72aeGkmbOIqT2k7fbIr0yffdYvzu5ALr/EACjL/s9DA6cZPjOlX5nafnUQfyURalAchGqUAwrzm8Sj2vVTkFq3fAV1F6+fJG1I18bx0VbNvKpdA47Ghf0/m8GkofXsBuUbzHlR6pQJ3/Dtmtm7btcsN9gBq8iZs0rddavbk9EnWnN3K2JJKzZphTVRq1vKmxbmbHvm7bnF+F3I5gD+Rw6eBzB2phsyczEnzDVmjQCkIZqjpnbQhcE74dqL4dFYTv03fBBY+vrZBsY4v2VCz2FKzMqwzfDDYMDZhnOfRvXj8X/78v/2P/Fvm0b0vuSTAn8zhn7FbrswTGSdaqOmcSHN40JzHw4wodK2K6a/A70bzxcMXjZ81vQ40kCZwnj55nJpFpWYVsHLnOli7nkIeNczz6PbzlXgtxye/bR7d+5JLAzxwUHL4ayWH90Q2HE2xpSeYKwfKgyEYURo3JAV5GZpIcC6y47Y/UwCria/pG4APipo9Sy4P8AcA8BXy8gl9NHprVO7pqKxdLqbe5UFlCkfYsHgFaUO1/9rtmhGKieeObz9z+qRWYBk7KvhK7mttpk+mEWwmz1O6kvZSn5Lvf/mlX0RtBy448DuqWXL4wx8J3ELuSU9k5ljMfEnVjGAwsmg8WHrvqVJSpa1DP36U4nbJ+W6PHxY1e5ZcaOA36c7JHH4yqtljEzt6SibmytrNGj/vyKHuvdccfuPfN2+3Cejk5c5P+MCo2bPkggOPiv03AO4g3Yj8ZP9Xekc2NphPk8XQ0DDz9Co+XjNPr7IrB5DF1O9E9Jt3FwAX8UFSs2fJxQf+RA4PfIo8kZ5ABdKrmTfSFFCi+rJRV+haqqZz2HEcnAHfBHTc1NNpQ80KWEtcgbYEbAna0oSV6Gszrg15YE6jKjW7F8e8nyffP1p6uVUIdqjZiyUXH/hTcnjvljWHpznzJoe3ulEzs3eA5rtdcPbxUInosGPmgXnO3odHzZ4llwD4l3P4xVR25eI0leBOHry0YYfZx29YOxTgRZ1UOwESNkMVt5E8NtQsVoZi4q2CLnHlMzUbwgimKaUzbgx0QbUduCTAv5TDt2Qbyz68J5hXU2+gGYOpBnaqvfiFqiWAovvcmvkMIFP4YKnZs+RyAH8AbHL43ujJmEeaAqk5nUMoEX0N8uYcvvh3I3lM9QTBNdfKk9W3f3jU7FlyYXfnTtuH7/ZuIY8jvV0QWjOQdVihjPDAWmblm6pa1aKLucyKQA3oWKprkoBEaKJhkF6mZnlJqmbfVC6wxtdr9/A7AncAfLnJ4fMwWKSZp8LPMxW/7kKQ6s4c5slWcxpnQO2MYamZ3rB0BEcvc/k+OGr2LLnAwAO49y3ndqzPbvzET/ZLgWXXlMkagcmoXFg6K7tyc0k1CnljqBx9ecO691q1HTWgEzR+qNTsWXKxga+yfvo9Syr3K+ccPm+2YmkUg8S6F+//t71r2ZHjSJJmnplV1S9KpEaDoaADsRD2oDnqB/hnpL5HP8Ef4JE6LOawB4GcAaEXqe7MjAh3m0NEdVeTrAEFzO6kqtoIgs1GgwdaeYS7uYV7VwmXQTLe9tXVY15tvq5QuBVrhAnXi4EOR5rdh4UT/+SDlmqn2S1Ldb+1VLOj0bDtzl3LtER97AqpHvN1OdD1qhDNAKcqzfKgpNl9WDjxFR9vqYapGi2NolHb+12EKILB7TRtKIPc6bUfpjS7D8sn/vHj+ufHWKpRj3sA9ahn+wVKVbOrjyOMGWCClACbBE2AtTUhhyXN7sMiiX+/HdvTr4yxIcs0WfTVUn3zciZqU8aasZIto9dNUkdJiK3Roj58VFPoKBsF3J4lfyDS7D4stI7fKeXu/xeA2o79hG85DaSYrdbsNJO3pky1U9dyjgaJtXpjE+dZH1JLhWzz6FTvdiBGA//Qrtnfi0VGPID2f3jTjvWzX+gb43ogB293fL3br1/GAqj3+vaY3wZ8fRN3qxFDYBY4yVDnxh+oNLsPyyX+Iy3VVZs3k0UHqRktQWxZr6V7gG3/204mT+ySfpjS7D4s9KgH3n8WTfo90gpYdyF0BrA+hQY6sEm3kok0tfF8Ndrp9V9qmjw5Q5rA7f1+uNLsPiw34oGPtlSrybMMGmjv6fLtd03o2Mo3szZj9rCl2X1YcMQD23Zsd++CujR2Lg7rZNGvqeImeGes7+Qi6gAE8LoFC6Ad83V+rQNsd7smE8YARhJX9es/xkCDfxcWHfG32rEfslRjJ9pRBxvp+n6v12895lVUbVVJxERwElhNFrCrQ5Zm92FxxP9rS/Xp+5ZqVr0egBnJltiBqPIsmsOGQBI0U9u2azNZRIw4YGl2HxZH/K0a/t12rO22Y6ulGqhWapGUmqkaAtjkWaiQbTQZbRI1qUV6VerazvYDlWb3YYHE46PasXbdmdONj/7aVElJ3N7rGUKWlEC1aG/tVsRoXYwyjocqze7DMolvqLNwv8S77VjZQG1fwhJmaC9l6moyAVAdV4724lWJwgRV56wBV2j3utq9fqjS7D4sNKuv7djXjx8jvXxFPzWGSHiylW1Y0OTaFvXVMS9CBoRQ73Y62caUEbOAicIIxihwhOoyXwWnQ5Zm92HREb9txwKf4iSTaz9hkNbRWw3vZgSl2GbztQFLOonrebOATSQnWJVkAVyxWaUPXZrdh+USv9OO9ZmMFRk9GDlbACZv7+UCNeIlAgFCIUQAbJk8Z0Czrr10dgVghGI0wxRm0yFLs/uwqKN+/4SrtywjjCtY361Z3K0DTBEmq/VcAEAlJmgskCjSqUggRxOuj/cAR8BGRZ46w5w7Haw0uw8Li/jdUq6iTD/xLNWxJ/INg8WsNWjEjlCr+0nRGCAdYh00LCWRk4RJ2mbyGE0YjTEZhymHHbQ0uw8LIx6N+5t2LP70GXxjXDvZM1uUYrK+TiKMMNsKNoSkrZ9O1WEDzZQmA6uHjnaF5qyJwOStfDsE1+zvxfKIf6cd++lo3E6pVoB9N1Du1pHsOgMMCFKARR1uUJcI1LrdJmzft2trrsAo9KPBZ4SlQ5dm92FRd3zFk+uvdqdUoxPRkTKyA9vs0ahpQQjVK48m2AgEnNIUwMRmnAR8lNlo8tnFmX35j68B+09heRGPd9uxVbXTULN6BSrpdmO0oDGICLSVIRQT6x776py1ps6pHy04hXE6Fml2HxZJPPB+DV/78MUUTZxtCEoUQqJLKFA1UQqo5Zsw1k5c1eMDtddOt6OQZvdhmcTfquHfMFZXVad3UF1jI4KkiQGJciMKiCxDrdvJycRpm8UrYorgRPhssplDl3Q+5EOXZvdhMXf8bg1f8RX86jWxMUZW9cevVoCXerdbr4gq0iLMBS8Qm49aheomGap7VhrV9SNLno2rGUw5HCUVc43nBy3N7sOCIv6mhr/pwwPAPQAnkCcqMoEetE5wB+gS6aI7yEzDTHAmOUkxSayRTk4sXleSdp5sOEtbafa8z37I0uw+LIh43Krh8ejR9XjyKBPrxunh5keti9qOq5k8yQQxiZgkTGYcpahHfXDqrDpr4F2KiOInuUxvi//4xcM4ZGl2H5ZF/PWSQqD8+gPxJ8CzEScniH6mPBMo9f2jikRzQW2iBROhma7ZjKMCkxlGI6eAzw5rM2uGNms2+aaUWOqs2f9rLIv4hu1OWh9/qR23MlV1rhsE6+WEDJ1boMqzoRyKJGAWMSlqRq/gFIbJtuWbeRNrTsrUXxyFNLsPi0nuPowHuL11OINe63axc7AUhBlIUWAdb4IixGzoJhATis1gTtAqKaccoXK67rzM5aBcs78XC4v4G9VuF+w3sgKxSIY+jOYRcsAyoBxSIjQr6uAiQzdG+OQlZld11sA8+3pV/PSkVLHmOKTZfVhexL9+Rnz+59vfG0dwWClTYVSwyDtDkdRBRDVbQkZ4ATPBWeTUgZMGzqlYGtjl0zyXX8/MH+Qc/ugqnuPtUUY7sLiIfxc/4XIIWb9RKpM6KboiV9cVKQrEFBaJipngHMHJgpOV+vfsJSF5BuvygHSZfR0er8uXsXk5HoU0uw/Li/gddJefCiczrL9U16/DiiKscykKGJnsRNGj6j8hJYetEoFksFmrzUyWFOiy0rok+9UfeB/+9++bWLMrzR4V7wuM+M8f7zDwI7pJmnUSnRRu7p5n70OFsUoekQjOZpy64GSsFmmDzUXdXKN9aHq8+3l/77ZYcwTS7D4sMuI397/W5c//q/70gYbVEDHNykOESviqHwpghAIID++GWvLBQ92qREShusShJLJP4aX4kD363t+8neMz7Ig1RyDN7sMiiQeeo7/4Rt36H+reSB0iMK8dJ7kgOkKO7EX9em2KTNogkyJScfReMChrKjnAIqaSLmd/8Ekf/oHy7RijHVjcUV+P3osvvhHwNwxvQr996pG6U8/mXmb3CC9gyews0T2ZbN4OHmRXEr1LLH0Shuw5l3RxWrZH/DGXb+9iWcQ/fVKlUwDrvyddpIfR/yatPGLTFff1qoR7wdxnDl3KsDl5Tsk9GWzOOJttGBJYsudczk9Py/pVtVN9Mn+102s/XsK3WBbxDc9eQJv7X+uHC2hTSvxWPNKQ/bTkIgwZSJmlTxz6xL5LLDnZMKSwknGVcymp+mUDWQAAAepJREFUnJ9OZVxnf9ONfnZ5Vc2TtxK64yZ/MXe8rmeXVFx8AU0vvtePZ6dxz43jm3Pg3m/wlTRcrgIs1EgCPWyQcJWlMw8/LZFW585X63jTjX726FF8DtwldO9geRH/FMJfoRr1o/qLop+mHOd99pzOynk5LX46l1JSETdZ3GR1mwxs8lymktNZOf+lRfqjRzf3+s4Rf6wJ3S4WRvyux+07PP+ft/pk/io2f5mq7bmUGNf1A5Dm05IucklzLjnlku+l8sl8Vu6tZ/91/dDPLq9i8/K5nv/8Tdwm/chDvYFL+/BfH/dPQbwA8foZv/nvC04/n3D+y4rlbc+H93sCXyJdvuLq7KGAH/Dq5y/VX0Drz6DNS+jiC+xE+rcAqkJ3F+0ViyMeeJf874jXn/Px48d4+xKcfv6e+OvXmH/82/XxsP7sK+HF99jc/7oS/uxZVQBvZfB3pO9iocTvGC+ftg9Bi/7HzYH79uXznUTwGwHP8OxFk3tbSXhH+n4skvgtbrL8b4mnT+qXL77jdkzKbXyHrWdut06/u9M/jEUTD+yS3/B068t7svPNb6v4cwt3Uf6vsHjit3jvA7AXd4R/DP4wxN/h34uF1fF3+P/CHfFHijvijxR3xB8p7og/UtwRf6S4I/5IcUf8keKfNOhXKVX7cAMAAAAASUVORK5CYII=\"/\u003e\u003cpolygon class=\"cls-4\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003csvg id=\"Warstwa_1\" data-name=\"Warstwa 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 625 625\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1,.cls-3{fill:none;stroke:#fff;}.cls-1{stroke-width:30px;}.cls-2{fill:#fff;}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003ekeda-icon-white\u003c/title\u003e\u003cg id=\"Icon\"\u003e\u003cg id=\"k8s-icon-1\"\u003e\u003cg id=\"Kubernetes_Logo_Hrz_lockup_REV\" data-name=\"Kubernetes Logo Hrz lockup REV\"\u003e\u003cpath id=\"Shape\" class=\"cls-1\" d=\"M522.24,172.9c-1.86-5.44-6.28-10.35-12.36-13.63L318.77,68.71l-.11-.06c-2.07-1-5.08-1.55-9-1.55-3.56,0-5.14,0-7,.13a34.57,34.57,0,0,0-3.85.42L109.09,158.16l-.17.08A18.47,18.47,0,0,0,98.41,171L51.47,374.84a23.88,23.88,0,0,0,4.13,17.75l131.48,161a31,31,0,0,0,18.28,8.21h211.1l.82.09c5.8.64,11.32-1.88,15.16-7.06l.21-.28L564.91,392.59a27,27,0,0,0,4.65-18.18Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003cg id=\"nodes\"\u003e\u003ccircle id=\"Oval-2\" class=\"cls-2\" cx=\"438\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-2\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"196\" cy=\"553\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-3\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"307\" cy=\"73\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-4\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"518\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-5\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"100\" cy=\"165\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-6\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"567\" cy=\"384\" r=\"39\"/\u003e\u003ccircle id=\"Oval-2-7\" data-name=\"Oval-2\" class=\"cls-2\" cx=\"59\" cy=\"384\" r=\"39\"/\u003e\u003c/g\u003e\u003cg id=\"Warstwa_1-2\" data-name=\"Warstwa 1\"\u003e\u003cg id=\"Wordmark\"\u003e\u003cpath id=\"KEDA\" class=\"cls-2\" d=\"M195.77,367l-23-41.09-6.93,7.06v34h-18V277.1h18v29l26.32-29h24.26L185,312.28,217.21,367Zm99.89-89.87v18h-60v-18Zm-60,52.63v-18h49.68v18Zm0,37.37v-18h59.57v18Zm78.43-90h25.43a44.2,44.2,0,0,1,31.7,13.09,42.65,42.65,0,0,1,9.63,14.38,44.46,44.46,0,0,1,0,35.05,41,41,0,0,1-9.63,14.25,45.05,45.05,0,0,1-31.7,13.23H321.48V367h-7.34Zm18,72h7.45a27,27,0,0,0,0-54.05h-7.45Zm102.61-72H440l42.49,90H462.58L436.9,312.41,409.05,367.1H388.89Z\"/\u003e\u003cpolygon class=\"cls-3\" points=\"446.72 363.34 451.59 354.62 432.75 354.62 438.38 315.55 438.1 315.03 408.31 368.99 408.32 368.99 407.42 370.59 426.54 370.44 421.46 408.86 421.58 409.36 444.66 367.09 444.65 367.09 444.65 367.09 446.72 363.34\"/\u003e\u003cpath id=\"Combined-Shape\" class=\"cls-2\" d=\"M444.66,367.09l6.88-12.45h-18.8l5.9-40.51-29.28,53h-6.45l34-63.7,33.95,63.7Z\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json b/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json index 0c73b22f131..189c55a29ff 100644 --- a/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json +++ b/server/meshmodel/kubearmor-operator/v1.3.8/v1.0.0/components/KubeArmorConfig.json @@ -45,17 +45,19 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0C2A79", "secondaryColor": "#5197FF", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", - "svgComplete": "", + "svgComplete": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", "svgWhite": "\u003csvg width=\"203\" height=\"360\" viewBox=\"0 0 203 360\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M202.689 180.309C200.689 128.309 186.689 104.309 186.689 104.309C165.689 70.3086 129.689 66.3086 129.689 66.3086L127.199 79.6986L135.689 0.308594H61.6895L76.6895 125.539L99.1895 149.539L122.289 125.539L127.189 79.7786C157.679 85.2486 172.689 107.309 172.689 107.309C187.689 127.309 189.689 177.309 189.689 177.309C157.689 241.309 172.689 273.309 172.689 273.309C154.999 280.199 136.359 298.999 135.779 299.629C154.089 249.049 176.669 183.569 173.569 176.309H168.689V167.309H31.6895V176.309H25.6895C23.8995 186.469 43.1594 249.449 58.9594 298.509C55.7994 295.049 42.6195 281.149 28.6895 273.309C28.6895 273.309 40.6895 234.309 14.6895 177.309C14.6895 177.309 15.6895 131.309 28.6895 108.309C28.6895 108.309 34.6895 89.3086 68.6895 79.3086L64.6895 66.3086C64.6895 66.3086 32.6895 71.3086 14.6895 105.309C14.6895 105.309 2.68945 129.309 0.689453 180.309C0.689453 180.309 28.6895 231.309 14.6895 279.309C14.6895 279.309 58.2694 299.649 77.7694 355.579C78.0294 356.329 78.2895 357.089 78.5395 357.859V357.919L78.6295 358.199V358.309L90.6295 354.309C90.6295 354.309 61.6295 262.309 45.6295 207.309C41.7295 193.879 40.2695 185.829 39.7395 181.309H160.089C159.749 185.609 158.259 193.409 153.569 207.309C134.749 263.049 100.689 354.309 100.689 354.309L113.689 359.309C113.689 359.309 114.899 356.139 116.959 350.629C138.249 299.979 187.669 279.349 187.669 279.349C170.689 233.309 202.689 180.309 202.689 180.309ZM108.689 120.309L99.1895 130.309L89.6895 120.309L76.6895 13.3086H120.579L108.689 120.309Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { diff --git a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json index 21c2b5ce024..82ddfd0e3a4 100644 --- a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json +++ b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorHostPolicy.json @@ -45,17 +45,19 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": false, "primaryColor": "#0C2A79", "secondaryColor": "#5197FF", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", - "svgComplete": "", + "svgComplete": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", "svgWhite": "\u003csvg width=\"203\" height=\"360\" viewBox=\"0 0 203 360\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M202.689 180.309C200.689 128.309 186.689 104.309 186.689 104.309C165.689 70.3086 129.689 66.3086 129.689 66.3086L127.199 79.6986L135.689 0.308594H61.6895L76.6895 125.539L99.1895 149.539L122.289 125.539L127.189 79.7786C157.679 85.2486 172.689 107.309 172.689 107.309C187.689 127.309 189.689 177.309 189.689 177.309C157.689 241.309 172.689 273.309 172.689 273.309C154.999 280.199 136.359 298.999 135.779 299.629C154.089 249.049 176.669 183.569 173.569 176.309H168.689V167.309H31.6895V176.309H25.6895C23.8995 186.469 43.1594 249.449 58.9594 298.509C55.7994 295.049 42.6195 281.149 28.6895 273.309C28.6895 273.309 40.6895 234.309 14.6895 177.309C14.6895 177.309 15.6895 131.309 28.6895 108.309C28.6895 108.309 34.6895 89.3086 68.6895 79.3086L64.6895 66.3086C64.6895 66.3086 32.6895 71.3086 14.6895 105.309C14.6895 105.309 2.68945 129.309 0.689453 180.309C0.689453 180.309 28.6895 231.309 14.6895 279.309C14.6895 279.309 58.2694 299.649 77.7694 355.579C78.0294 356.329 78.2895 357.089 78.5395 357.859V357.919L78.6295 358.199V358.309L90.6295 354.309C90.6295 354.309 61.6295 262.309 45.6295 207.309C41.7295 193.879 40.2695 185.829 39.7395 181.309H160.089C159.749 185.609 158.259 193.409 153.569 207.309C134.749 263.049 100.689 354.309 100.689 354.309L113.689 359.309C113.689 359.309 114.899 356.139 116.959 350.629C138.249 299.979 187.669 279.349 187.669 279.349C170.689 233.309 202.689 180.309 202.689 180.309ZM108.689 120.309L99.1895 130.309L89.6895 120.309L76.6895 13.3086H120.579L108.689 120.309Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { diff --git a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json index 94f59469b4a..322516455bb 100644 --- a/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json +++ b/server/meshmodel/kubearmor/v1.3.8/v1.0.0/components/KubeArmorPolicy.json @@ -45,17 +45,19 @@ "metadata": { "capabilities": "", "defaultData": "", + "genealogy": "", "isAnnotation": false, "isNamespaced": true, "primaryColor": "#0C2A79", "secondaryColor": "#5197FF", - "shape": "sheild", + "shape": "shield", "shapePolygonPoints": "", "status": "enabled", "styleOverrides": "", "styles": "", + "subCategory": "", "svgColor": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", - "svgComplete": "", + "svgComplete": "\u003csvg width=\"578\" height=\"551\" viewBox=\"0 0 578 551\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M279.599 5.9289L111.769 85.0589C103.294 89.0583 95.8336 94.9228 89.9457 102.213C84.0578 109.504 79.8951 118.032 77.7692 127.159L36.7692 302.849C34.6139 312.095 34.6055 321.712 36.7446 330.961C38.8837 340.211 43.1134 348.848 49.1092 356.209L164.509 497.859C170.337 505.012 177.684 510.778 186.018 514.737C194.352 518.697 203.463 520.75 212.689 520.749H399.509C408.736 520.751 417.847 518.698 426.181 514.738C434.515 510.779 441.862 505.013 447.689 497.859L563.079 356.209C569.075 348.848 573.305 340.211 575.444 330.961C577.583 321.712 577.574 312.095 575.419 302.849L534.419 127.159C532.289 118.034 528.125 109.508 522.238 102.218C516.35 94.9276 508.892 89.062 500.419 85.0589L332.599 5.9289C324.311 2.02205 315.262 -0.00390625 306.099 -0.00390625C296.937 -0.00390625 287.887 2.02205 279.599 5.9289Z\" fill=\"#5197FF\"/\u003e\n\u003cpath d=\"M294.78 48.6008L132.05 125.321C128.559 126.968 125.487 129.384 123.063 132.387C120.638 135.39 118.924 138.902 118.05 142.661L78.0495 314.181C77.1565 317.992 77.1501 321.957 78.0308 325.772C78.9116 329.586 80.6559 333.147 83.1295 336.181L195.43 474.001C197.829 476.948 200.854 479.323 204.286 480.954C207.718 482.585 211.47 483.431 215.27 483.431H396.11C399.918 483.438 403.679 482.595 407.12 480.964C410.561 479.332 413.595 476.954 416 474.001L528.3 336.141C530.771 333.105 532.513 329.544 533.394 325.731C534.274 321.917 534.27 317.952 533.38 314.141L493.38 142.621C492.506 138.861 490.793 135.348 488.368 132.345C485.943 129.342 482.87 126.927 479.38 125.281L316.61 48.6008C313.196 46.991 309.469 46.1563 305.695 46.1562C301.92 46.1563 298.193 46.991 294.78 48.6008Z\" fill=\"#0C2A79\"/\u003e\n\u003cpath d=\"M406.689 265.309C404.689 213.309 390.689 189.309 390.689 189.309C369.689 155.309 333.689 151.309 333.689 151.309L331.199 164.699L339.689 85.3086H265.689L280.689 210.539L303.189 234.539L326.289 210.539L331.189 164.779C361.679 170.249 376.689 192.309 376.689 192.309C391.689 212.309 393.689 262.309 393.689 262.309C361.689 326.309 376.689 358.309 376.689 358.309C358.999 365.199 340.359 383.999 339.779 384.629C358.089 334.049 380.669 268.569 377.569 261.309H372.689V252.309H235.689V261.309H229.689C227.899 271.469 247.159 334.449 262.959 383.509C259.799 380.049 246.619 366.149 232.689 358.309C232.689 358.309 244.689 319.309 218.689 262.309C218.689 262.309 219.689 216.309 232.689 193.309C232.689 193.309 238.689 174.309 272.689 164.309L268.689 151.309C268.689 151.309 236.689 156.309 218.689 190.309C218.689 190.309 206.689 214.309 204.689 265.309C204.689 265.309 232.689 316.309 218.689 364.309C218.689 364.309 262.269 384.649 281.769 440.579C282.029 441.329 282.289 442.089 282.539 442.859V442.919L282.629 443.199V443.309L294.629 439.309C294.629 439.309 265.629 347.309 249.629 292.309C245.729 278.879 244.269 270.829 243.739 266.309H364.089C363.749 270.609 362.259 278.409 357.569 292.309C338.749 348.049 304.689 439.309 304.689 439.309L317.689 444.309C317.689 444.309 318.899 441.139 320.959 435.629C342.249 384.979 391.669 364.349 391.669 364.349C374.689 318.309 406.689 265.309 406.689 265.309ZM312.689 205.309L303.189 215.309L293.689 205.309L280.689 98.3086H324.579L312.689 205.309Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M331.19 164.73V164.78H331.18L331.19 164.73Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n", "svgWhite": "\u003csvg width=\"203\" height=\"360\" viewBox=\"0 0 203 360\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M202.689 180.309C200.689 128.309 186.689 104.309 186.689 104.309C165.689 70.3086 129.689 66.3086 129.689 66.3086L127.199 79.6986L135.689 0.308594H61.6895L76.6895 125.539L99.1895 149.539L122.289 125.539L127.189 79.7786C157.679 85.2486 172.689 107.309 172.689 107.309C187.689 127.309 189.689 177.309 189.689 177.309C157.689 241.309 172.689 273.309 172.689 273.309C154.999 280.199 136.359 298.999 135.779 299.629C154.089 249.049 176.669 183.569 173.569 176.309H168.689V167.309H31.6895V176.309H25.6895C23.8995 186.469 43.1594 249.449 58.9594 298.509C55.7994 295.049 42.6195 281.149 28.6895 273.309C28.6895 273.309 40.6895 234.309 14.6895 177.309C14.6895 177.309 15.6895 131.309 28.6895 108.309C28.6895 108.309 34.6895 89.3086 68.6895 79.3086L64.6895 66.3086C64.6895 66.3086 32.6895 71.3086 14.6895 105.309C14.6895 105.309 2.68945 129.309 0.689453 180.309C0.689453 180.309 28.6895 231.309 14.6895 279.309C14.6895 279.309 58.2694 299.649 77.7694 355.579C78.0294 356.329 78.2895 357.089 78.5395 357.859V357.919L78.6295 358.199V358.309L90.6295 354.309C90.6295 354.309 61.6295 262.309 45.6295 207.309C41.7295 193.879 40.2695 185.829 39.7395 181.309H160.089C159.749 185.609 158.259 193.409 153.569 207.309C134.749 263.049 100.689 354.309 100.689 354.309L113.689 359.309C113.689 359.309 114.899 356.139 116.959 350.629C138.249 299.979 187.669 279.349 187.669 279.349C170.689 233.309 202.689 180.309 202.689 180.309ZM108.689 120.309L99.1895 130.309L89.6895 120.309L76.6895 13.3086H120.579L108.689 120.309Z\" fill=\"white\"/\u003e\n\u003c/svg\u003e\n" }, "component": { diff --git a/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json b/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json index 5b0d2dee97b..fe6ebd555fc 100644 --- a/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json +++ b/server/meshmodel/meshery-core/0.7.2/v1.0.0/components/NodeGroupInventoryWallet.json @@ -36,7 +36,7 @@ "relationships": null }, "metadata": { - "capabilities": "{\n \"designer\": {\n \"pass-events-to\": \"parent\",\n \"edit\": {\n \"config\": false,\n \"copy\": false,\n \"delete\": false,\n \"duplicate\": false,\n \"reset-styles\": false,\n \"resolve\": false,\n \"lock\": false,\n \"shape\": {\n \"convert-shape\": false\n },\n \"style\": false\n },\n \"label\": {\n \"edit\": false,\n \"show\": false,\n \"sync-with-config-property\": \"none\"\n }\n }\n}", + "capabilities": "{\n \"designer\": {\n \"pass-events-to\": \"parent\", \"supportsCompoundDragAndDrop\":false,\n \"edit\": {\n \"config\": false,\n \"copy\": false,\n \"delete\": false,\n \"duplicate\": false,\n \"reset-styles\": false,\n \"resolve\": false,\n \"lock\": false,\n \"shape\": {\n \"convert-shape\": false\n },\n \"style\": false\n },\n \"label\": {\n \"edit\": false,\n \"show\": false,\n \"sync-with-config-property\": \"none\"\n }\n }\n}", "defaultData": "{\"label\":\"\"}", "genealogy": "parent", "isAnnotation": true, @@ -45,8 +45,8 @@ "shape": "round-rectangle", "shapePolygonPoints": "", "status": "enabled", - "styleOverrides": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0.1,\"data\":{\"label\":\"\"}}", - "styles": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0.1}", + "styleOverrides": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0,\"data\":{\"label\":\"\"}}", + "styles": "{\"height\":\"30px\",\"width\":\"30px\", \"background-image\":\"none\",\"border-width\":0,\"border-style\":\"dashed\",\"background-opacity\":0}", "subCategory": "", "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003crect x=\"1.5\" y=\"1\" width=\"38\" height=\"38\" fill=\"#00B39F\" fill-opacity=\"0.1\" stroke=\"#00B39F\" stroke-miterlimit=\"10\"/\u003e\n\u003c/svg\u003e\n", "svgComplete": "",